Files
nixpkgs/pkgs/development/python-modules/scikit-base/default.nix
2026-04-17 02:28:34 +00:00

34 lines
709 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
toml,
setuptools,
}:
buildPythonPackage rec {
pname = "scikit-base";
version = "0.13.2";
pyproject = true;
src = fetchFromGitHub {
owner = "sktime";
repo = "skbase";
tag = "v${version}";
hash = "sha256-NZpuc2MUziqpzB2x7ae9xH8mWzia2j/cgzUbJKAVTqE=";
};
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 ];
};
}