Skip to content

Commit

Permalink
python3Packages.saiph: init at version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Rodrigues committed Oct 31, 2024
1 parent ff01e15 commit 3b3d7d7
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
47 changes: 47 additions & 0 deletions pkgs/development/python-modules/saiph/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
lib,
buildPythonPackage,
poetry-core,
fetchPypi,
msgspec,
numpy,
pandas,
pydantic,
scikit-learn,
scipy,
toolz,
}:

buildPythonPackage rec {

pname = "saiph";
version = "2.0.0";

src = fetchPypi {
inherit pname version;
hash = "sha256-+qwiLP+uac9PPyZ0wYs4WbDRSaS77nRqS2PazZvjTug=";
};

pyproject = true;

build-system = [
poetry-core
];

propagatedBuildInputs = [
msgspec
numpy
pandas
pydantic
scikit-learn
scipy
toolz
];

meta = with lib; {
description = "A projection package";
homepage = "https://github.com/octopize/saiph/tree/main";
license = licenses.asl20;
maintainers = with maintainers; [ b-rodrigues ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14037,6 +14037,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 { };
Expand Down

0 comments on commit 3b3d7d7

Please sign in to comment.