python3Packages.ipython: patch test after python update

(cherry picked from commit fad9786825)
This commit is contained in:
Vladimír Čunát
2022-08-09 23:33:31 +02:00
committed by Martin Weinelt
parent 2fae15a0a6
commit 172ea8bce9

View File

@@ -2,6 +2,7 @@
, stdenv
, buildPythonPackage
, fetchPypi
, fetchpatch
, pythonOlder
# Build dependencies
@@ -40,6 +41,17 @@ buildPythonPackage rec {
glibcLocales
];
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=";
})
];
propagatedBuildInputs = [
backcall
decorator