summary refs log blame commit diff
path: root/pkgs/development/python-modules/diofant/default.nix
blob: 5a2e6e60b83025687e52270df8c96ff0fd02fdba (plain) (tree)
1
2
3
4
5
6
7
8
9
10
     

                    
       

        



                



                        

                               



                      
                                                                   



                       
                  


                           
         
          

         




                  
                                     







                                                 
{ 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 ];
  };
}