mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
|
{ lib
|
||
|
, fetchPypi
|
||
|
, buildPythonPackage
|
||
|
, numpy
|
||
|
, tensorflow-probability
|
||
|
, chex
|
||
|
, dm-haiku
|
||
|
, pytestCheckHook
|
||
|
, jaxlib }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "distrax";
|
||
|
version = "0.1.2";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-b/+rxjdowNMuhUBhRCuN45z/iUbj1hN1qCSQqqAtZIw=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [
|
||
|
chex
|
||
|
jaxlib
|
||
|
numpy
|
||
|
tensorflow-probability
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
dm-haiku
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"distrax"
|
||
|
];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
# TypeErrors
|
||
|
"distrax/_src/bijectors/tfp_compatible_bijector_test.py"
|
||
|
"distrax/_src/distributions/distribution_from_tfp_test.py"
|
||
|
"distrax/_src/distributions/laplace_test.py"
|
||
|
"distrax/_src/distributions/multinomial_test.py"
|
||
|
"distrax/_src/distributions/mvn_diag_plus_low_rank_test.py"
|
||
|
"distrax/_src/distributions/mvn_kl_test.py"
|
||
|
"distrax/_src/distributions/straight_through_test.py"
|
||
|
"distrax/_src/distributions/tfp_compatible_distribution_test.py"
|
||
|
"distrax/_src/distributions/transformed_test.py"
|
||
|
"distrax/_src/distributions/uniform_test.py"
|
||
|
"distrax/_src/utils/transformations_test.py"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Probability distributions in JAX";
|
||
|
homepage = "https://github.com/deepmind/distrax";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ onny ];
|
||
|
};
|
||
|
}
|