mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
python3Packages.pyannote-core: init at 5.0.0
This commit is contained in:
parent
ccbf330ccc
commit
658df6b55a
44
pkgs/development/python-modules/pyannote-core/default.nix
Normal file
44
pkgs/development/python-modules/pyannote-core/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user