python3Packages.treeo: init at 0.0.9
This commit is contained in:
parent
ca6b9afb5f
commit
f26a7d5a78
2 changed files with 43 additions and 0 deletions
41
pkgs/development/python-modules/treeo/default.nix
Normal file
41
pkgs/development/python-modules/treeo/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, jax
|
||||
, jaxlib
|
||||
, lib
|
||||
, poetry-core
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "treeo";
|
||||
version = "0.0.9";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cgarciae";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0jfqj5150braj4ybnifc6b8mp0w2j93li6bm20lcd7a19qs0lkk2";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
# These deps are not needed for the wheel, but required during the import.
|
||||
propagatedBuildInputs = [
|
||||
jax
|
||||
jaxlib
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"treeo"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A small library for creating and manipulating custom JAX Pytree classes.";
|
||||
homepage = "https://github.com/cgarciae/treeo";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ndl ];
|
||||
};
|
||||
}
|
|
@ -9742,6 +9742,8 @@ in {
|
|||
|
||||
transmissionrpc = callPackage ../development/python-modules/transmissionrpc { };
|
||||
|
||||
treeo = callPackage ../development/python-modules/treeo { };
|
||||
|
||||
treq = callPackage ../development/python-modules/treq { };
|
||||
|
||||
trezor_agent = callPackage ../development/python-modules/trezor_agent { };
|
||||
|
|
Loading…
Reference in a new issue