python312Packages.tinytag: init at 1.10.1
This commit is contained in:
parent
54dbf4a10b
commit
54d0da017b
33
pkgs/development/python-modules/tinytag/default.nix
Normal file
33
pkgs/development/python-modules/tinytag/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
setuptools,
|
||||||
|
pytestCheckHook,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "tinytag";
|
||||||
|
version = "1.10.1";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tinytag";
|
||||||
|
repo = "tinytag";
|
||||||
|
rev = "refs/tags/${version}";
|
||||||
|
hash = "sha256-Kg67EwDIi/Io7KKnNiqPzQKginrfuE6FAeOCjFgEJkY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "tinytag" ];
|
||||||
|
|
||||||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Read audio file metadata";
|
||||||
|
homepage = "https://github.com/tinytag/tinytag";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
||||||
|
};
|
||||||
|
}
|
@ -15553,6 +15553,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
tinysegmenter = callPackage ../development/python-modules/tinysegmenter { };
|
tinysegmenter = callPackage ../development/python-modules/tinysegmenter { };
|
||||||
|
|
||||||
|
tinytag = callPackage ../development/python-modules/tinytag { };
|
||||||
|
|
||||||
tinytuya = callPackage ../development/python-modules/tinytuya { };
|
tinytuya = callPackage ../development/python-modules/tinytuya { };
|
||||||
|
|
||||||
titlecase = callPackage ../development/python-modules/titlecase { };
|
titlecase = callPackage ../development/python-modules/titlecase { };
|
||||||
|
Loading…
Reference in New Issue
Block a user