1{ lib
2, buildPythonPackage
3, fetchPypi
4, numpy
5, cython
6}:
7
8buildPythonPackage rec {
9 pname = "pyworld";
10 version = "0.3.4";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-EGxw7np9jJukiNgCLyAzcGkppA8CZCVrjofaWquYMDo=";
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}