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

24 lines
499 B
Nix
Raw Normal View History

2017-08-12 07:04:44 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "audioread";
name = "${pname}-${version}";
2017-08-24 17:34:20 +00:00
version = "2.1.5";
2017-08-12 07:04:44 +00:00
src = fetchPypi {
inherit pname version;
2017-08-24 17:34:20 +00:00
sha256 = "36c3b118f097c58ba073b7d040c4319eff200756f094295677567e256282d0d7";
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;
};
}