33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, jax
|
|
, jaxlib
|
|
, multipledispatch
|
|
, numpy
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, tqdm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "numpyro";
|
|
version = "0.10.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
hash = "sha256-36iW8ByN9D3dQWY68rPi/Erqc0ieZpR06DMpsYOykVA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
jax
|
|
jaxlib
|
|
numpy
|
|
multipledispatch
|
|
tqdm
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"numpyro"
|
|
];
|
|
|
|
disabledTests = [
|
|
# AssertionError due to tolerance issues
|
|
"test_beta_binomial_log_prob"
|
|
"test_collapse_beta"
|
|
"test_cpu"
|
|
"test_gamma_poisson"
|
|
"test_gof"
|
|
"test_hpdi"
|
|
"test_kl_univariate"
|
|
"test_mean_var"
|
|
# Tests want to download data
|
|
"data_load"
|
|
"test_jsb_chorales"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for probabilistic programming with NumPy";
|
|
homepage = "https://num.pyro.ai/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|