python311Packages.ipython: 8.4.0 -> 8.11.0

Release: https://github.com/ipython/ipython/releases/tag/8.11.0
This commit is contained in:
superherointj 2023-02-28 17:57:22 -03:00
parent 3686005e6e
commit 7effb27feb

View File

@ -28,26 +28,15 @@
buildPythonPackage rec {
pname = "ipython";
version = "8.4.0";
version = "8.11.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "f2db3a10254241d9b447232cec8b424847f338d9d36f9a577a6192c332a46abd";
sha256 = "735cede4099dbc903ee540307b9171fbfef4aa75cfcacc5a273b2cda2f02be04";
};
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
];