tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python: jupyter_client: 5.2.1 -> 5.2.2
Frederik Rietdijk
8 years ago
74e6c1ee
6c280dad
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
jupyter_client
default.nix
+4
-3
pkgs/development/python-modules/jupyter_client/default.nix
reviewed
···
11
11
, ipython
12
12
, mock
13
13
, pytest
14
14
+
, tornado
14
15
}:
15
16
16
17
buildPythonPackage rec {
17
18
pname = "jupyter_client";
18
18
-
version = "5.2.1";
19
19
+
version = "5.2.2";
19
20
20
21
src = fetchPypi {
21
22
inherit pname version;
22
22
-
sha256 = "462790d46b244f0a631ea5e3cd5cdbad6874d5d24cc0ff512deb7c16cdf8653d";
23
23
+
sha256 = "83d5e23132f0d8f79ccd3939f53fb9fa97f88a896a85114dc48d0e86909b06c4";
23
24
};
24
25
25
26
checkInputs = [ ipykernel ipython mock pytest ];
26
26
-
propagatedBuildInputs = [traitlets jupyter_core pyzmq dateutil] ++ lib.optional isPyPy py;
27
27
+
propagatedBuildInputs = [traitlets jupyter_core pyzmq dateutil tornado ] ++ lib.optional isPyPy py;
27
28
28
29
checkPhase = ''
29
30
py.test