python312Packages.pykalman: 0.9.7 -> 0.10.1; python312Packages.scikit-base: init at 0.12.1 (#379493)

This commit is contained in:
kirillrdy
2025-02-06 08:07:46 +11:00
committed by GitHub
3 changed files with 41 additions and 4 deletions
@@ -4,27 +4,29 @@
fetchFromGitHub,
numpy,
scipy,
scikit-base,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pykalman";
version = "0.9.7";
version = "0.10.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pykalman";
repo = "pykalman";
rev = "aaf8c8574b0474b6f41b7b135a9a7f2dfbd0e86c"; # no tags
hash = "sha256-++YqxGMsFGv5OxicDFO9Xz89e62NG8X+6oR6M9ePUcg=";
tag = "v${version}";
hash = "sha256-9HaDNYVPdRvQH3r5j7r0uHqyuR6HqV7QaNuxKEYDcy8=";
};
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
numpy
scipy
scikit-base
];
nativeCheckInputs = [ pytestCheckHook ];
@@ -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 ];
};
}
+2
View File
@@ -14599,6 +14599,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 { };