python.pkgs.notebook: 5.2.2 -> 5.3.1

+4 -4
+4 -4
pkgs/development/python-modules/notebook/default.nix
··· 17 17 , ipykernel 18 18 , terminado 19 19 , requests 20 + , send2trash 20 21 , pexpect 21 22 }: 22 23 23 24 buildPythonPackage rec { 24 25 pname = "notebook"; 25 - version = "5.2.2"; 26 - name = "${pname}-${version}"; 26 + version = "5.3.1"; 27 27 28 28 src = fetchPypi { 29 29 inherit pname version; 30 - sha256 = "7bb54fb61b9c5426bc116f840541b973431198e00ea2896122d05fc122dbbd67"; 30 + sha256 = "12vk3shylx61whdchxbg71mdlwiw2l31vl227sqwpb0p67bbw2rq"; 31 31 }; 32 32 33 33 LC_ALL = "en_US.utf8"; ··· 36 36 ++ (if isPy3k then [ nose_warnings_filters ] else [ mock ]); 37 37 38 38 propagatedBuildInputs = [ 39 - jinja2 tornado ipython_genutils traitlets jupyter_core 39 + jinja2 tornado ipython_genutils traitlets jupyter_core send2trash 40 40 jupyter_client nbformat nbconvert ipykernel terminado requests pexpect 41 41 ]; 42 42