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












                        
                     


                          
                                                                                

























                                                           
{ lib
, buildPythonPackage
, fetchPypi
, pytools
, pytest
, six
, sympy
, pexpect
, symengine
}:

buildPythonPackage rec {
  pname = "pymbolic";
  version = "2019.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a7507864a76574d72bf5732497b247661c6ad73bb277cd9c8aae09e90a62e05a";
  };

  postConfigure = ''
    substituteInPlace setup.py \
      --replace "\"pytest>=2.3\"," ""
  '';

  checkInputs = [ sympy pexpect symengine pytest ];
  propagatedBuildInputs = [
    pytools
    six
  ];

  # too many tests fail
  doCheck = false;
  checkPhase = ''
    pytest test
  '';

  meta = with lib; {
    description = "A package for symbolic computation";
    homepage = https://mathema.tician.de/software/pymbolic;
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}