14 buildPythonPackage rec {
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
22 owner = "aesara-devs";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-mqBbXwWJwQA2wSHuEdBeXQMfTIcgwYEjpq8AVmOjmHM=";
28 build-system = [ setuptools ];
42 export HOME=$(mktemp -d);
45 pythonImportsCheck = [ "aeppl" ];
53 # `numpy.distutils` is deprecated since NumPy 1.23.0, as a result of the deprecation of `distutils` itself.
54 # It will be removed for Python >= 3.12. For older Python versions it will remain present.
55 "-Wignore::DeprecationWarning"
56 # Blas cannot be found, allow fallback to the numpy slower implementation
57 "-Wignore::UserWarning"
61 description = "Library for an Aesara-based PPL";
62 homepage = "https://github.com/aesara-devs/aeppl";
63 changelog = "https://github.com/aesara-devs/aeppl/releases/tag/v${version}";
64 license = licenses.mit;
65 maintainers = with maintainers; [ fab ];