blob: 139eba2b6960a98b825eae0654ac5f9d6464c06d (
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,
fetchPypi,
isPy27,
m2r,
}:
buildPythonPackage rec {
pname = "chromaprint";
version = "0.5";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-d4M+ieNQpIXcnEH1WyIWnTYZe3P+Y58W0uz1uYPwLQE=";
};
buildInputs = [ m2r ];
# no tests
doCheck = false;
pythonImportsCheck = [ "chromaprint" ];
meta = {
description = "Facilitate effortless color terminal output";
homepage = "https://pypi.org/project/${pname}/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
dschrempf
peterhoeg
];
};
}
|