Merge pull request #331372 from Sigmanificient/tinytag
python3Packages.tinytag: init at 1.10.1
This commit is contained in:
commit
506a38a10d
pkgs
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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user