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