python3Packages.pyannote-pipeline: init at 3.0.1
This commit is contained in:
committed by
Emery Hemingway
parent
658df6b55a
commit
efcaeb0f5c
@@ -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; [ ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user