depot/third_party/nixpkgs/pkgs/development/python-modules/symengine/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

71 lines
1.5 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
cython,
cmake,
symengine,
pytest,
sympy,
python,
setuptools,
}:
buildPythonPackage rec {
pname = "symengine";
version = "0.11.0";
build-system = [ setuptools ];
pyproject = true;
src = fetchFromGitHub {
owner = "symengine";
repo = "symengine.py";
rev = "refs/tags/v${version}";
hash = "sha256-uUMcNnynE2itIwc7IGFwxveqLRL8f4dAAcaD6FUWJaY=";
};
env = {
SymEngine_DIR = "${symengine}";
};
patches = [
# Distutils has been removed in python 3.12
# See https://github.com/symengine/symengine.py/pull/478
(fetchpatch {
name = "no-distutils.patch";
url = "https://github.com/symengine/symengine.py/pull/478/commits/e72006d5f7425cd50c54b22766e0ed4bcd2dca85.patch";
hash = "sha256-kGJRGkBgxOfI1wf88JwnSztkOYd1wvg62H7wA6CcYEQ=";
})
];
postPatch = ''
substituteInPlace setup.py \
--replace-fail "\"cmake\"" "\"${lib.getExe' cmake "cmake"}\"" \
--replace-fail "'cython>=0.29.24'" "'cython'"
export PATH=${cython}/bin:$PATH
'';
nativeBuildUnputs = [ cmake ];
buildInputs = [ cython ];
nativeCheckInputs = [
pytest
sympy
];
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 = [ ];
};
}