blob: b40849b527384148e993e1425e1785a51b19ed0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
toml,
setuptools,
}:
buildPythonPackage rec {
pname = "scikit-base";
version = "0.13.0";
pyproject = true;
src = fetchFromGitHub {
owner = "sktime";
repo = "skbase";
tag = "v${version}";
hash = "sha256-fZytQprnp4WAxTJxXp+AAe7xDRfcxaCAELPS6eAfK4g=";
};
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 ];
};
}
|