python312Packages.tinytag: init at 1.10.1

This commit is contained in:
Sigmanificient 2024-07-31 22:12:49 +02:00
parent 54dbf4a10b
commit 54d0da017b
2 changed files with 35 additions and 0 deletions

View 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 ];
};
}

View File

@ -15553,6 +15553,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 { };