1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 numpy,
6 cython,
7}:
8
9buildPythonPackage rec {
10 pname = "pyworld";
11 version = "0.3.5";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-G5PlPN22eg5PqjTWz5GaxsZi/rHIwO2QHXG1las5aqM=";
17 };
18
19 nativeBuildInputs = [ cython ];
20
21 propagatedBuildInputs = [ numpy ];
22
23 pythonImportsCheck = [ "pyworld" ];
24
25 meta = with lib; {
26 description = "PyWorld is a Python wrapper for WORLD vocoder";
27 homepage = "https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder";
28 license = licenses.mit;
29 maintainers = [ maintainers.mic92 ];
30 };
31}