python3Packages.pyannote-pipeline: init at 3.0.1

This commit is contained in:
matthewcroughan
2024-02-20 14:18:33 +00:00
committed by Emery Hemingway
parent 658df6b55a
commit efcaeb0f5c
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, wheel
, pyannote-core
, pyannote-database
, pyyaml
, optuna
, tqdm
, docopt
, filelock
, scikit-learn
}:
buildPythonPackage rec {
pname = "pyannote-pipeline";
version = "3.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pyannote";
repo = "pyannote-pipeline";
rev = version;
hash = "sha256-0wSgy6kbKi9Wa5dimOz34IV5/8fSwaHDMUpaBW7tm2Y=";
};
propagatedBuildInputs = [
pyannote-core
pyannote-database
pyyaml
optuna
tqdm
docopt
filelock
scikit-learn
];
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "pyannote.pipeline" ];
meta = with lib; {
description = "Tunable pipelines";
homepage = "https://github.com/pyannote/pyannote-pipeline";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}
+2
View File
@@ -10181,6 +10181,8 @@ self: super: with self; {
pyannote-audio = callPackage ../development/python-modules/pyannote-audio { };
pyannote-pipeline = callPackage ../development/python-modules/pyannote-pipeline { };
pyannote-core = callPackage ../development/python-modules/pyannote-core { };
pyarlo = callPackage ../development/python-modules/pyarlo { };