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