python3Packages.ipython: patch test after python update

This commit is contained in:
Vladimír Čunát 2022-08-09 23:33:31 +02:00
parent 5ad6c8071e
commit fad9786825
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -2,6 +2,7 @@
, stdenv
, buildPythonPackage
, fetchPypi
, fetchpatch
, pythonOlder
# Build dependencies
@ -36,6 +37,17 @@ buildPythonPackage rec {
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 = [
setuptools
];