mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 15:41:16 +00:00
Merge branch 'master' into staging-next
This commit is contained in:
16
pkgs/development/python-modules/keystone/default.nix
Normal file
16
pkgs/development/python-modules/keystone/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
31
pkgs/development/python-modules/pyworld/default.nix
Normal file
31
pkgs/development/python-modules/pyworld/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user