-
-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3Packages.saiph: init at version 2.0.0
- Loading branch information
Bruno Rodrigues
committed
Oct 31, 2024
1 parent
ff01e15
commit 3b3d7d7
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters