Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 617 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, numpy 5, cython 6}: 7 8buildPythonPackage rec { 9 pname = "pyworld"; 10 version = "0.3.3"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-o6gXVZg9+iKZqeKUd1JYLdzISlwnewT0WVzkQGNy0eU="; 15 }; 16 17 nativeBuildInputs = [ 18 cython 19 ]; 20 21 propagatedBuildInputs = [ 22 numpy 23 ]; 24 25 pythonImportsCheck = [ "pyworld" ]; 26 27 meta = with lib; { 28 description = "PyWorld is a Python wrapper for WORLD vocoder"; 29 homepage = "https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder"; 30 license = licenses.mit; 31 maintainers = [ maintainers.mic92 ]; 32 }; 33}