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