6169b45fd4
patching out cython version requirement as their choice seems to have been arbitrary ("the latest")
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cython
|
|
, cmake
|
|
, symengine
|
|
, pytest
|
|
, sympy
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "symengine";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "symengine";
|
|
repo = "symengine.py";
|
|
rev = "v${version}";
|
|
sha256 = "0yyi3w03fk19i32jmns1baq3rpmf7xfykzkivc7dmnxmjmxvq2gr";
|
|
};
|
|
|
|
postConfigure = ''
|
|
substituteInPlace setup.py \
|
|
--replace "\"cmake\"" "\"${cmake}/bin/cmake\"" \
|
|
--replace "'cython>=0.29.24'" "'cython'"
|
|
|
|
substituteInPlace cmake/FindCython.cmake \
|
|
--replace "SET(CYTHON_BIN cython" "SET(CYTHON_BIN ${cython}/bin/cython"
|
|
'';
|
|
|
|
nativeBuildUnputs = [ cmake ];
|
|
|
|
buildInputs = [ cython ];
|
|
|
|
checkInputs = [ pytest sympy ];
|
|
|
|
setupPyBuildFlags = [
|
|
"--symengine-dir=${symengine}/"
|
|
"--define=\"CYTHON_BIN=${cython}/bin/cython\""
|
|
];
|
|
|
|
checkPhase = ''
|
|
mkdir empty
|
|
cd empty
|
|
${python.interpreter} ../bin/test_python.py
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Python library providing wrappers to SymEngine";
|
|
homepage = "https://github.com/symengine/symengine.py";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|