mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
33 lines
709 B
Nix
33 lines
709 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
toml,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "scikit-base";
|
|
version = "0.13.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sktime";
|
|
repo = "skbase";
|
|
tag = "v${version}";
|
|
hash = "sha256-aprudD39bcQrCQbDU/IYcOZykKvSv6ZpakAwTCwCtGA=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ toml ];
|
|
|
|
pythonImportsCheck = [ "skbase" ];
|
|
|
|
meta = {
|
|
description = "Base classes for creating scikit-learn-like parametric objects, and tools for working with them";
|
|
homepage = "https://github.com/sktime/skbase";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ kirillrdy ];
|
|
};
|
|
}
|