Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / audioread / default.nix
bloba4f6d9057654e0a9b6b4a6d3cfd3c97dc4fd36f0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestrunner
5 }:
7 buildPythonPackage rec {
8   pname = "audioread";
9   version = "2.1.9";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "a3480e42056c8e80a8192a54f6729a280ef66d27782ee11cbd63e9d4d1523089";
14   };
16   nativeBuildInputs = [ pytestrunner ];
18   # No tests, need to disable or py3k breaks
19   doCheck = false;
21   meta = {
22     description = "Cross-platform audio decoding";
23     homepage = "https://github.com/sampsyo/audioread";
24     license = lib.licenses.mit;
25   };