nixpkgs/pkgs/development/python-modules/audioread/default.nix

27 lines
524 B
Nix
Raw Normal View History

2017-08-12 07:04:44 +00:00
{ lib
, buildPythonPackage
, fetchPypi
2019-06-15 08:15:12 +00:00
, pytestrunner
2017-08-12 07:04:44 +00:00
}:
buildPythonPackage rec {
pname = "audioread";
2019-06-15 08:14:22 +00:00
version = "2.1.8";
2017-08-12 07:04:44 +00:00
src = fetchPypi {
inherit pname version;
2019-06-15 08:14:22 +00:00
sha256 = "073904fabc842881e07bd3e4a5776623535562f70b1655b635d22886168dd168";
2017-08-12 07:04:44 +00:00
};
2019-06-15 08:15:12 +00:00
nativeBuildInputs = [ pytestrunner ];
2017-08-12 07:04:44 +00:00
# No tests, need to disable or py3k breaks
doCheck = false;
meta = {
description = "Cross-platform audio decoding";
homepage = "https://github.com/sampsyo/audioread";
license = lib.licenses.mit;
};
2019-06-15 08:15:12 +00:00
}