about summary refs log tree commit diff
path: root/pkgs/development/python-modules/diofant/default.nix
blob: 5a2e6e60b83025687e52270df8c96ff0fd02fdba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ lib
, buildPythonPackage
, fetchPypi
, gmpy2
, isort
, mpmath
, numpy
, pythonOlder
, scipy
, setuptools-scm
}:

buildPythonPackage rec {
  pname = "diofant";
  version = "0.12.0";
  disabled = pythonOlder "3.9";

  src = fetchPypi {
    inherit version;
    pname = "Diofant";
    sha256 = "sha256-G0CTSoDSduiWxlrk5XjnX5ldNZ9f7yxaJeUPO3ezJgo=";
  };

  nativeBuildInputs = [
    isort
    setuptools-scm
  ];

  propagatedBuildInputs = [
    gmpy2
    mpmath
    numpy
    scipy
  ];

  # tests take ~1h
  doCheck = false;

  pythonImportsCheck = [ "diofant" ];

  meta = with lib; {
    description = "A Python CAS library";
    homepage = "https://diofant.readthedocs.io/";
    license = licenses.bsd3;
    maintainers = with maintainers; [ suhr ];
  };
}