2025-07-29 09:18:23 +00:00

34 lines
711 B
Nix

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