Merge pull request #313688 from fabaff/pyannote-metrics-fix

python311Packages.pyannote-metrics: refactor
This commit is contained in:
Weijia Wang 2024-05-23 07:55:41 +02:00 committed by GitHub
commit 0ab99ae1fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,19 +1,20 @@
{
lib,
buildPythonPackage,
docopt,
fetchFromGitHub,
setuptools,
wheel,
matplotlib,
numpy,
pandas,
pyannote-core,
pyannote-database,
pandas,
scipy,
pythonOlder,
scikit-learn,
docopt,
tabulate,
matplotlib,
scipy,
setuptools,
sympy,
numpy,
tabulate,
versioneer,
}:
buildPythonPackage rec {
@ -21,14 +22,26 @@ buildPythonPackage rec {
version = "3.2.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pyannote";
repo = "pyannote-metrics";
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-V4qyaCaFsoikfFILm2sccf6m7lqJSDTdLxS1sr/LXAY=";
};
propagatedBuildInputs = [
postPatch = ''
# Remove vendorized versioneer.py
rm versioneer.py
'';
build-system = [
setuptools
versioneer
];
dependencies = [
pyannote-core
pyannote-database
pandas
@ -41,18 +54,14 @@ buildPythonPackage rec {
numpy
];
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "pyannote.metrics" ];
meta = with lib; {
description = "A toolkit for reproducible evaluation, diagnostic, and error analysis of speaker diarization systems";
mainProgram = "pyannote-metrics";
homepage = "https://github.com/pyannote/pyannote-metrics";
changelog = "http://pyannote.github.io/pyannote-metrics/changelog.html";
license = licenses.mit;
maintainers = with maintainers; [ ];
mainProgram = "pyannote-metrics";
};
}