mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
33 lines
711 B
Nix
33 lines
711 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
toml,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "scikit-base";
|
|
version = "0.12.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sktime";
|
|
repo = "skbase";
|
|
tag = "v${version}";
|
|
hash = "sha256-UaAzEw/crkHg7Gyu0xWdQwlqP8M/00Pv82+G3fXQ9hs=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ toml ];
|
|
|
|
pythonImportsCheck = [ "skbase" ];
|
|
|
|
meta = with lib; {
|
|
description = "Base classes for creating scikit-learn-like parametric objects, and tools for working with them";
|
|
homepage = "https://github.com/sktime/skbase";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ kirillrdy ];
|
|
};
|
|
}
|