0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00
Gaetan Lepage 2025-02-17 23:24:45 +01:00
parent 8a3e6de4bd
commit 6bb00cb366

View file

@ -17,20 +17,22 @@
# tests
absl-py,
jaxlib,
omegaconf,
pydantic,
pytestCheckHook,
torch,
}:
buildPythonPackage rec {
pname = "treescope";
version = "0.1.8";
version = "0.1.9";
pyproject = true;
src = fetchFromGitHub {
owner = "google-deepmind";
repo = "treescope";
tag = "v${version}";
hash = "sha256-/rSQUmmfMPP7sZ6avd9bc4lSW/sHLXLEKKCJdXjBTB4=";
hash = "sha256-rLrsG7psY3xkuvNtdRULiMWKzIiWZpJ7TVJhwTNGXRQ=";
};
build-system = [ flit-core ];
@ -51,6 +53,8 @@ buildPythonPackage rec {
absl-py
jax
jaxlib
omegaconf
pydantic
pytestCheckHook
torch
];