Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 524 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestrunner 5}: 6 7buildPythonPackage rec { 8 pname = "audioread"; 9 version = "2.1.8"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "073904fabc842881e07bd3e4a5776623535562f70b1655b635d22886168dd168"; 14 }; 15 16 nativeBuildInputs = [ pytestrunner ]; 17 18 # No tests, need to disable or py3k breaks 19 doCheck = false; 20 21 meta = { 22 description = "Cross-platform audio decoding"; 23 homepage = "https://github.com/sampsyo/audioread"; 24 license = lib.licenses.mit; 25 }; 26}