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

23 lines
467 B
Nix
Raw Normal View History

2017-08-12 07:04:44 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "audioread";
2019-05-30 06:49:48 +00:00
version = "2.1.7";
2017-08-12 07:04:44 +00:00
src = fetchPypi {
inherit pname version;
2019-05-30 06:49:48 +00:00
sha256 = "f488f9e6fa1ccb09289e3db194639bc6388168b27ef27b2c62380aa1d35a3abe";
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;
};
}