python312Packages.scikit-base: init at 0.12.1
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
toml,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "scikit-base";
|
||||
version = "0.12.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sktime";
|
||||
repo = "skbase";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-UGYkYhgo6LzlZTg6YDehJXd4D5p8FfUgWPdlW4PPOdI=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -14593,6 +14593,8 @@ self: super: with self; {
|
||||
|
||||
scim2-tester = callPackage ../development/python-modules/scim2-tester { };
|
||||
|
||||
scikit-base = callPackage ../development/python-modules/scikit-base { };
|
||||
|
||||
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
|
||||
|
||||
scikit-build = callPackage ../development/python-modules/scikit-build { };
|
||||
|
||||
Reference in New Issue
Block a user