python3Packages.pyannote-core: init at 5.0.0

This commit is contained in:
matthewcroughan 2024-02-09 22:18:45 +00:00 committed by Emery Hemingway
parent ccbf330ccc
commit 658df6b55a
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, wheel
, sortedcontainers
, numpy
, scipy
, typing-extensions
}:
buildPythonPackage rec {
pname = "pyannote-core";
version = "5.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "pyannote";
repo = "pyannote-core";
rev = version;
hash = "sha256-XQVEMy60LkfFr2TKXTeg6cGHRx5BUZ5qDgzIdKy/19Y=";
};
propagatedBuildInputs = [
sortedcontainers
numpy
scipy
typing-extensions
];
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "pyannote.core" ];
meta = with lib; {
description = "Advanced data structures for handling temporal segments with attached labels";
homepage = "https://github.com/pyannote/pyannote-core";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

View File

@ -10181,6 +10181,8 @@ self: super: with self; {
pyannote-audio = callPackage ../development/python-modules/pyannote-audio { };
pyannote-core = callPackage ../development/python-modules/pyannote-core { };
pyarlo = callPackage ../development/python-modules/pyarlo { };
pyarr = callPackage ../development/python-modules/pyarr { };