python312Packages.tinytag: init at 1.10.1

This commit is contained in:
Sigmanificient
2024-08-04 17:36:36 +02:00
committed by gador
parent 172d297d36
commit aa3fe60363
2 changed files with 35 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -15575,6 +15575,8 @@ self: super: with self; {
tinysegmenter = callPackage ../development/python-modules/tinysegmenter { };
tinytag = callPackage ../development/python-modules/tinytag { };
tinytuya = callPackage ../development/python-modules/tinytuya { };
titlecase = callPackage ../development/python-modules/titlecase { };