python3Packages.saiph: init at 2.0.3 (#352710)

This commit is contained in:
Sandro
2025-09-23 21:58:27 +00:00
committed by GitHub
2 changed files with 68 additions and 0 deletions
@@ -0,0 +1,66 @@
{
lib,
buildPythonPackage,
poetry-core,
fetchFromGitHub,
pytestCheckHook,
doubles,
msgspec,
numpy,
pandas,
pydantic,
scikit-learn,
scipy,
toolz,
}:
buildPythonPackage rec {
pname = "saiph";
version = "2.0.3";
src = fetchFromGitHub {
owner = "octopize";
repo = "saiph";
tag = "saiph-v${version}";
hash = "sha256-8AbV3kjPxjZo28CgahfbdNl9+ESWOfUt8YT+mWwbo5Q=";
};
pyproject = true;
build-system = [
poetry-core
];
dependencies = [
doubles
msgspec
numpy
pandas
pydantic
scikit-learn
scipy
toolz
];
# No need for benchmarks
disabledTests = [
"benchmark_test.py"
];
nativeCheckInputs = [
pytestCheckHook
];
pythonRelaxDeps = true;
pythonImportsCheck = [
"saiph"
];
meta = {
description = "Package enabling to project data";
homepage = "https://github.com/octopize/saiph";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ b-rodrigues ];
};
}
+2
View File
@@ -16301,6 +16301,8 @@ self: super: with self; {
sagemaker-mlflow = callPackage ../development/python-modules/sagemaker-mlflow { };
saiph = callPackage ../development/python-modules/saiph { };
salib = callPackage ../development/python-modules/salib { };
salmon-mail = callPackage ../development/python-modules/salmon-mail { };