python.pkgs.notebook: 5.2.2 -> 5.3.1

This commit is contained in:
Robin Gloster 2018-01-16 22:08:03 +01:00
parent ea0bfbe4f6
commit 7189e0a541
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
1 changed files with 4 additions and 4 deletions

View File

@ -17,17 +17,17 @@
, ipykernel , ipykernel
, terminado , terminado
, requests , requests
, send2trash
, pexpect , pexpect
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "notebook"; pname = "notebook";
version = "5.2.2"; version = "5.3.1";
name = "${pname}-${version}";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "7bb54fb61b9c5426bc116f840541b973431198e00ea2896122d05fc122dbbd67"; sha256 = "12vk3shylx61whdchxbg71mdlwiw2l31vl227sqwpb0p67bbw2rq";
}; };
LC_ALL = "en_US.utf8"; LC_ALL = "en_US.utf8";
@ -36,7 +36,7 @@ buildPythonPackage rec {
++ (if isPy3k then [ nose_warnings_filters ] else [ mock ]); ++ (if isPy3k then [ nose_warnings_filters ] else [ mock ]);
propagatedBuildInputs = [ propagatedBuildInputs = [
jinja2 tornado ipython_genutils traitlets jupyter_core jinja2 tornado ipython_genutils traitlets jupyter_core send2trash
jupyter_client nbformat nbconvert ipykernel terminado requests pexpect jupyter_client nbformat nbconvert ipykernel terminado requests pexpect
]; ];