Merge branch 'master' into staging-next

This commit is contained in:
Jörg Thalheim
2020-12-31 07:31:38 +01:00
41 changed files with 1846 additions and 1217 deletions

View File

@@ -0,0 +1,16 @@
{ lib
, buildPythonPackage
, keystone
}:
buildPythonPackage rec {
inherit (keystone) pname src version buildInputs nativeBuildInputs;
dontUseCmakeConfigure = 1;
preBuild = "cd bindings/python";
meta = with lib; {
inherit (keystone.meta) description license homepage;
maintainers = [ maintainers.mic92 ];
};
}

View File

@@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, cython
}:
buildPythonPackage rec {
pname = "pyworld";
version = "0.2.12";
src = fetchPypi {
inherit pname version;
sha256 = "896c910696975855578d855f490f94d7a57119e0a75f7f15e11fdf58ba891627";
};
nativeBuildInputs = [
cython
];
propagatedBuildInputs = [
numpy
];
meta = with lib; {
description = "PyWorld is a Python wrapper for WORLD vocoder";
homepage = https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder;
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};
}