Commit 060355b3 authored by Peter Hoeg's avatar Peter Hoeg
Browse files

pythonPackages.chromaprint: init at 0.5.0

parent 61019e39
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, m2r
}:

buildPythonPackage rec {
  pname = "chromaprint";
  version = "0.5";

  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-d4M+ieNQpIXcnEH1WyIWnTYZe3P+Y58W0uz1uYPwLQE=";
  };

  buildInputs = [ m2r ];

  # no tests
  doCheck = false;

  pythonImportsCheck = [ "chromaprint" ];

  meta = with lib; {
    description = "Facilitate effortless color terminal output";
    homepage = "https://pypi.org/project/${pname}/";
    license = licenses.mit;
    maintainers = with maintainers; [ dschrempf peterhoeg ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1609,6 +1609,8 @@ in {

  chispa = callPackage ../development/python-modules/chispa { };

  chromaprint = callPackage ../development/python-modules/chromaprint { };

  ci-info = callPackage ../development/python-modules/ci-info { };

  ci-py = callPackage ../development/python-modules/ci-py { };