blob: 1860dcbfc084130592eaa0b1541724e3d6447c33 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
flit-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "tinytag";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "tinytag";
repo = "tinytag";
tag = version;
hash = "sha256-QRPnXPTMe0eM9nlZ1YFWJuP+OvifZnaNCwOcJz+48EY=";
};
build-system = [
setuptools
flit-core
];
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 ];
};
}
|