python3Packages.aesara: 2.7.2 -> 2.7.3

Fixes a hash mismatch and adds additional libraries to the check phase
so that tests work again.

https://github.com/aesara-devs/aesara/releases/tag/rel-2.7.3
main
Martin Weinelt 2 years ago
parent 587c686926
commit 9191e226db
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 8
      pkgs/development/python-modules/aesara/default.nix

@ -6,6 +6,8 @@
, etuples
, fetchFromGitHub
, filelock
, jax
, jaxlib
, logical-unification
, minikanren
, numba
@ -19,7 +21,7 @@
buildPythonPackage rec {
pname = "aesara";
version = "2.7.2";
version = "2.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -28,7 +30,7 @@ buildPythonPackage rec {
owner = "aesara-devs";
repo = "aesara";
rev = "refs/tags/rel-${version}";
hash = "sha256-NJxklOpIbSbi/SB/rafBNllpnNb1yWLVpyB2f/U0i78=";
hash = "sha256-LeZEWKSfVmU7k7qMjniUjwoDJ5xJUHoYux7Qy5/w4Cg=";
};
nativeBuildInputs = [
@ -47,6 +49,8 @@ buildPythonPackage rec {
];
checkInputs = [
jax
jaxlib
numba
numba-scipy
pytestCheckHook

Loading…
Cancel
Save