pythonPackages.symengine: 0.4.0 -> 0.6.1, mark unbroken

This commit is contained in:
Sandro Jäckel 2020-11-26 23:20:50 +01:00
parent 07dfadc89c
commit 34730e0640
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -11,13 +11,13 @@
buildPythonPackage rec {
pname = "symengine";
version = "0.4.0";
version = "0.6.1";
src = fetchFromGitHub {
owner = "symengine";
repo = "symengine.py";
rev = "v${version}";
sha256 = "07i9rwxphi4zgwc7y6f6qvq73iym2cx4k1bpd7rmd3wkpgrrfxqx";
sha256 = "13fy25qxn4xwzlr2w35v6jhlpd70lv9r6srv4dizc4brj63hnw50";
};
postConfigure = ''
@ -28,7 +28,9 @@ buildPythonPackage rec {
--replace "SET(CYTHON_BIN cython" "SET(CYTHON_BIN ${cython}/bin/cython"
'';
buildInputs = [ cython cmake ];
nativeBuildUnputs = [ cmake ];
buildInputs = [ cython ];
checkInputs = [ pytest sympy ];
@ -48,6 +50,5 @@ buildPythonPackage rec {
homepage = "https://github.com/symengine/symengine.py";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
broken = true;
};
}