tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.ipython: 7.5.0 -> 7.6.1
Frederik Rietdijk
6 years ago
c2bcf46a
de6fc7fb
+2
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ipython
default.nix
+2
-9
pkgs/development/python-modules/ipython/default.nix
···
22
23
buildPythonPackage rec {
24
pname = "ipython";
25
-
version = "7.5.0";
26
disabled = pythonOlder "3.5";
27
28
src = fetchPypi {
29
inherit pname version;
30
-
sha256 = "e840810029224b56cd0d9e7719dc3b39cf84d577f8ac686547c8ba7a06eeab26";
31
};
32
33
prePatch = lib.optionalString stdenv.isDarwin ''
34
substituteInPlace setup.py --replace "'gnureadline'" " "
35
'';
36
-
37
-
patches = [
38
-
(fetchpatch {
39
-
url = "https://github.com/ipython/ipython/commit/e1b53e9ef91a43b9e275bb9e48b4253218375d87.patch";
40
-
sha256 = "sha256:0q7zsgalwxss6aikhakbdkvvz0g4ac4sa3ncrklm74ksqh56rsgb";
41
-
})
42
-
];
43
44
buildInputs = [ glibcLocales ];
45
···
22
23
buildPythonPackage rec {
24
pname = "ipython";
25
+
version = "7.6.1";
26
disabled = pythonOlder "3.5";
27
28
src = fetchPypi {
29
inherit pname version;
30
+
sha256 = "11067ab11d98b1e6c7f0993506f7a5f8a91af420f7e82be6575fcb7a6ca372a0";
31
};
32
33
prePatch = lib.optionalString stdenv.isDarwin ''
34
substituteInPlace setup.py --replace "'gnureadline'" " "
35
'';
0
0
0
0
0
0
0
36
37
buildInputs = [ glibcLocales ];
38