37 lines
765 B
Nix
Raw Normal View History

2018-02-03 13:00:50 +01:00
{ lib
, buildPythonPackage
, fetchPypi
2018-05-07 23:45:02 +02:00
, fetchpatch
2018-02-03 13:00:50 +01:00
, glibcLocales
, mpmath
}:
buildPythonPackage rec {
pname = "sympy";
2020-07-31 10:56:48 +02:00
version = "1.6.1"; # Upgrades may break sage. Please test or ping @timokau.
2018-02-03 13:00:50 +01:00
src = fetchPypi {
inherit pname version;
2020-07-31 10:56:48 +02:00
sha256 = "7386dba4f7e162e90766b5ea7cab5938c2fe3c620b310518c8ff504b283cb15b";
2018-02-03 13:00:50 +01:00
};
checkInputs = [ glibcLocales ];
propagatedBuildInputs = [ mpmath ];
2019-04-14 17:52:03 +02:00
# tests take ~1h
2018-02-03 13:00:50 +01:00
doCheck = false;
pythonImportsCheck = [ "sympy" ];
2018-02-03 13:00:50 +01:00
2018-08-26 19:56:08 +02:00
preCheck = ''
export LANG="en_US.UTF-8"
'';
meta = with lib; {
2018-02-03 13:00:50 +01:00
description = "A Python library for symbolic mathematics";
homepage = "https://www.sympy.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ lovek323 timokau ];
2018-02-03 13:00:50 +01:00
};
2018-05-07 23:45:02 +02:00
}