Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 26 lines 524 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestrunner 5}: 6 7buildPythonPackage rec { 8 pname = "audioread"; 9 version = "2.1.9"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "a3480e42056c8e80a8192a54f6729a280ef66d27782ee11cbd63e9d4d1523089"; 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}