python3Packages.pyannote-core: 5.0.1 -> 6.0.1

Diff: https://github.com/pyannote/pyannote-core/compare/5.0.1...6.0.1

Changelog: https://github.com/pyannote/pyannote-core/releases/tag/6.0.1
This commit is contained in:
Gaetan Lepage
2025-11-03 10:40:32 +00:00
parent 6236814333
commit fd4a14663e

View File

@@ -2,57 +2,53 @@
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatch-vcs,
hatchling,
# dependencies
numpy,
pandas,
pytestCheckHook,
scipy,
setuptools,
sortedcontainers,
typing-extensions,
versioneer,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyannote-core";
version = "5.0.1";
version = "6.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pyannote";
repo = "pyannote-core";
tag = version;
hash = "sha256-28LVgI5bDFv71co/JsSrPrAcdugXiMRe6T1Jp0CO0XY=";
hash = "sha256-r5NkOAzrQGcb6LPi4/DA0uT9R0ELiYuwQkbT1l6R8Mw=";
};
postPatch = ''
# Remove vendorized versioneer.py
rm versioneer.py
'';
build-system = [
setuptools
versioneer
hatch-vcs
hatchling
];
dependencies = [
sortedcontainers
numpy
scipy
typing-extensions
pandas
sortedcontainers
];
nativeCheckInputs = [
pandas
pytestCheckHook
];
pythonImportsCheck = [ "pyannote.core" ];
meta = with lib; {
meta = {
description = "Advanced data structures for handling temporal segments with attached labels";
homepage = "https://github.com/pyannote/pyannote-core";
changelog = "https://github.com/pyannote/pyannote-core/releases/tag/${version}";
license = licenses.mit;
license = lib.licenses.mit;
maintainers = [ ];
};
}