nixpkgs/pkgs/development/python-modules/dm-haiku/default.nix
2023-07-15 13:17:39 +00:00

55 lines
1,009 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, callPackage
, lib
, jmp
, tabulate
, jaxlib
}:
buildPythonPackage rec {
pname = "dm-haiku";
version = "0.0.10";
src = fetchFromGitHub {
owner = "deepmind";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-EZx3o6PgTeFjTwI9Ko9H39EqPSE0yLWWpsdqX6ALlo4=";
};
outputs = [
"out"
"testsout"
];
propagatedBuildInputs = [
jaxlib
jmp
tabulate
];
pythonImportsCheck = [
"haiku"
];
postInstall = ''
mkdir $testsout
cp -R examples $testsout/examples
'';
# check in passthru.tests.pytest to escape infinite recursion with bsuite
doCheck = false;
passthru.tests = {
pytest = callPackage ./tests.nix { };
};
meta = with lib; {
description = "Haiku is a simple neural network library for JAX developed by some of the authors of Sonnet.";
homepage = "https://github.com/deepmind/dm-haiku";
license = licenses.asl20;
maintainers = with maintainers; [ ndl ];
};
}