biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / chromaprint / default.nix
blobbdf78d43b4685fd068c72488cd37eda556d9c0d5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   isPy27,
6   m2r,
7 }:
9 buildPythonPackage rec {
10   pname = "chromaprint";
11   version = "0.5";
12   format = "setuptools";
14   disabled = isPy27;
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-d4M+ieNQpIXcnEH1WyIWnTYZe3P+Y58W0uz1uYPwLQE=";
19   };
21   buildInputs = [ m2r ];
23   # no tests
24   doCheck = false;
26   pythonImportsCheck = [ "chromaprint" ];
28   meta = with lib; {
29     description = "Facilitate effortless color terminal output";
30     homepage = "https://pypi.org/project/${pname}/";
31     license = licenses.mit;
32     maintainers = with maintainers; [
33       dschrempf
34       peterhoeg
35     ];
36   };