Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3.pkgs.ipython: 7.5.0 -> 7.6.1

+2 -9
+2 -9
pkgs/development/python-modules/ipython/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "ipython"; 25 - version = "7.5.0"; 25 + version = "7.6.1"; 26 26 disabled = pythonOlder "3.5"; 27 27 28 28 src = fetchPypi { 29 29 inherit pname version; 30 - sha256 = "e840810029224b56cd0d9e7719dc3b39cf84d577f8ac686547c8ba7a06eeab26"; 30 + sha256 = "11067ab11d98b1e6c7f0993506f7a5f8a91af420f7e82be6575fcb7a6ca372a0"; 31 31 }; 32 32 33 33 prePatch = lib.optionalString stdenv.isDarwin '' 34 34 substituteInPlace setup.py --replace "'gnureadline'" " " 35 35 ''; 36 - 37 - patches = [ 38 - (fetchpatch { 39 - url = "https://github.com/ipython/ipython/commit/e1b53e9ef91a43b9e275bb9e48b4253218375d87.patch"; 40 - sha256 = "sha256:0q7zsgalwxss6aikhakbdkvvz0g4ac4sa3ncrklm74ksqh56rsgb"; 41 - }) 42 - ]; 43 36 44 37 buildInputs = [ glibcLocales ]; 45 38