python3Packages.ipython: patch test after python update
This commit is contained in:
parent
5ad6c8071e
commit
fad9786825
1 changed files with 12 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
, stdenv
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, fetchpatch
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
|
||||||
# Build dependencies
|
# Build dependencies
|
||||||
|
@ -36,6 +37,17 @@ buildPythonPackage rec {
|
||||||
sha256 = "f2db3a10254241d9b447232cec8b424847f338d9d36f9a577a6192c332a46abd";
|
sha256 = "f2db3a10254241d9b447232cec8b424847f338d9d36f9a577a6192c332a46abd";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
# The original URL might not be very stable, so let's prefer a copy.
|
||||||
|
urls = [
|
||||||
|
"https://raw.githubusercontent.com/bmwiedemann/openSUSE/9b35e4405a44aa737dda623a7dabe5384172744c/packages/p/python-ipython/ipython-pr13714-xxlimited.patch"
|
||||||
|
"https://github.com/ipython/ipython/pull/13714.diff"
|
||||||
|
];
|
||||||
|
sha256 = "XPOcBo3p8mzMnP0iydns9hX8qCQXTmRgRD0TM+FESCI=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue