ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aeppl / default.nix
blobbbd13871f676dec90a99083ac38fef7a583050e8
1 { lib
2 , aesara
3 , buildPythonPackage
4 , fetchFromGitHub
5 , numdifftools
6 , numpy
7 , pytestCheckHook
8 , pythonOlder
9 , scipy
12 buildPythonPackage rec {
13   pname = "aeppl";
14   version = "0.0.38";
15   format = "setuptools";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "aesara-devs";
21     repo = pname;
22     rev = "refs/tags/v${version}";
23     hash = "sha256-B9ZZEzGW4i0RRUaTAYiQ7+7pe4ArpSGcp/x4B6G7EYo=";
24   };
26   propagatedBuildInputs = [
27     aesara
28     numpy
29     scipy
30   ];
32   checkInputs = [
33     numdifftools
34     pytestCheckHook
35   ];
37   preCheck = ''
38     export HOME=$(mktemp -d);
39   '';
41   pythonImportsCheck = [
42     "aeppl"
43   ];
45   disabledTests = [
46     # Compute issue
47     "test_initial_values"
48   ];
50   meta = with lib; {
51     description = "Library for an Aesara-based PPL";
52     homepage = "https://github.com/aesara-devs/aeppl";
53     license = licenses.mit;
54     maintainers = with maintainers; [ fab ];
55   };