From a5e3d59bb3281fffd26dfd4bd8a23567e5940e80 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 1 Jan 2018 18:03:17 +0100 Subject: gnu: python-jupyter-console: Make it installable. Fixes . Reported by Johannes Laute . * gnu/packages/python.scm (python-jupyter-console-minimal)[name]: New field. --- gnu/packages/python.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ce3aa299bc..07302c729e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Nikita Karetnikov -;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès +;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018 Ludovic Courtès ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge ;;; Copyright © 2014, 2015 Mark H Weaver ;;; Copyright © 2014, 2017 Eric Bavier @@ -6511,6 +6511,7 @@ Jupyter kernels such as IJulia and IRKernel.") (define python-jupyter-console-minimal (package (inherit python-jupyter-console) + (name "python-jupyter-console-minimal") (arguments (substitute-keyword-arguments (package-arguments python-jupyter-console) -- cgit v1.3 From a684e38d73964f9694be0ef2ae796fdb8a40075e Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 2 Jan 2018 21:46:28 -0500 Subject: gnu: python-mistune: Update to 0.8.3 [fixes CVE-2017-{15612,16876}]. * gnu/packages/python.scm (python-mistune, python2-mistune): Update to 0.8.3. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 07302c729e..832afe8356 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5381,14 +5381,14 @@ plugins that intend to support Flake8 2.x and 3.x simultaneously.") (define-public python-mistune (package (name "python-mistune") - (version "0.7.3") + (version "0.8.3") (source (origin (method url-fetch) (uri (pypi-uri "mistune" version)) (sha256 (base32 - "04xpk1zvslhq3xpnf01g3ag0dy9wfv4z28p093r8k49vvxlyil11")))) + "06b662p6kf46wh2jsabaqhaq4bz1srh2zxkrnx4yg96azlxw645w")))) (build-system python-build-system) (native-inputs `(("python-nose" ,python-nose) -- cgit v1.3