Loading pkgs/development/python-modules/augmax/default.nix +11 −9 Original line number Diff line number Diff line { buildPythonPackage , einops , fetchPypi , fetchFromGitHub , jax , jaxlib , lib Loading @@ -15,19 +15,21 @@ buildPythonPackage rec { disbaled = pythonOlder "3.6"; # Using fetchPypi because the latest version was not tagged on GitHub. # Switch back to fetchFromGitHub when a tag will be available # https://github.com/khdlr/augmax/issues/8 src = fetchPypi { inherit pname version; hash = "sha256-pf1DTaHA7D+s2rqwwGYlJrJOI7fok+WOvOCtZhOOGHo="; src = fetchFromGitHub { owner = "khdlr"; repo = "augmax"; rev = "refs/tags/v${version}"; hash = "sha256-xz6yJiVZUkRcRa2rKZdytfpP+XCk/QI4xtKlNaS9FYo="; }; nativeBuildInputs = [ build-system = [ setuptools ]; propagatedBuildInputs = [ einops jax ]; dependencies = [ einops jax ]; # augmax does not have any tests at the time of writing (2022-02-19), but # jaxlib is necessary for the pythonImportsCheckPhase. Loading Loading
pkgs/development/python-modules/augmax/default.nix +11 −9 Original line number Diff line number Diff line { buildPythonPackage , einops , fetchPypi , fetchFromGitHub , jax , jaxlib , lib Loading @@ -15,19 +15,21 @@ buildPythonPackage rec { disbaled = pythonOlder "3.6"; # Using fetchPypi because the latest version was not tagged on GitHub. # Switch back to fetchFromGitHub when a tag will be available # https://github.com/khdlr/augmax/issues/8 src = fetchPypi { inherit pname version; hash = "sha256-pf1DTaHA7D+s2rqwwGYlJrJOI7fok+WOvOCtZhOOGHo="; src = fetchFromGitHub { owner = "khdlr"; repo = "augmax"; rev = "refs/tags/v${version}"; hash = "sha256-xz6yJiVZUkRcRa2rKZdytfpP+XCk/QI4xtKlNaS9FYo="; }; nativeBuildInputs = [ build-system = [ setuptools ]; propagatedBuildInputs = [ einops jax ]; dependencies = [ einops jax ]; # augmax does not have any tests at the time of writing (2022-02-19), but # jaxlib is necessary for the pythonImportsCheckPhase. Loading