mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 10:44:18 +00:00
python311Packages.cypari2: 2.1.3 -> 2.1.4
This commit is contained in:
parent
824d91a532
commit
2266324e20
@ -5,24 +5,24 @@
|
|||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pari
|
, pari
|
||||||
, gmp
|
, gmp
|
||||||
, cython
|
, cython_3
|
||||||
, cysignals
|
, cysignals
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cypari2";
|
pname = "cypari2";
|
||||||
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
|
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
|
||||||
version = "2.1.3";
|
version = "2.1.4";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "17beb467d3cb39fffec3227c468f0dd8db8a09129faeb95a6bb4c84b2b6c6683";
|
sha256 = "sha256-76SkTZb2k8sRVtof1vzMEw2vz5wZr0GFz3cL9E0A2/w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# patch to avoid some segfaults in sage's totallyreal.pyx test.
|
# patch to avoid some segfaults in sage's totallyreal.pyx test.
|
||||||
# (https://trac.sagemath.org/ticket/27267). depends on Cython patch.
|
# (https://trac.sagemath.org/ticket/27267).
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
name = "use-trashcan-for-gen.patch";
|
name = "use-trashcan-for-gen.patch";
|
||||||
url = "https://raw.githubusercontent.com/sagemath/sage/b6ea17ef8e4d652de0a85047bac8d41e90b25555/build/pkgs/cypari/patches/trashcan.patch";
|
url = "https://raw.githubusercontent.com/sagemath/sage/b6ea17ef8e4d652de0a85047bac8d41e90b25555/build/pkgs/cypari/patches/trashcan.patch";
|
||||||
@ -45,7 +45,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
cysignals
|
cysignals
|
||||||
cython
|
cython_3
|
||||||
];
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user