diff options
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8e8f46467b..49d43ab008 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -11,7 +11,7 @@ ;;; Copyright © 2015, 2016 Christopher Allan Webber <[email protected]> ;;; Copyright © 2015 Eric Dvorsak <[email protected]> ;;; Copyright © 2015, 2016 David Thompson <[email protected]> -;;; Copyright © 2015, 2016, 2017 Leo Famulari <[email protected]> +;;; Copyright © 2015, 2016, 2017, 2021 Leo Famulari <[email protected]> ;;; Copyright © 2015, 2017 Ben Woodcroft <[email protected]> ;;; Copyright © 2015, 2016 Erik Edrosa <[email protected]> ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner <[email protected]> @@ -59,7 +59,7 @@ ;;; Copyright © 2018 Vagrant Cascadian <[email protected]> ;;; Copyright © 2019 Tanguy Le Carrour <[email protected]> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <[email protected]> -;;; Copyright © 2020 Greg Hogan <[email protected]> +;;; Copyright © 2020, 2021 Greg Hogan <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -378,6 +378,14 @@ data types.") (properties '((cpe-name . "python"))) (license license:psfl))) +(define python-2.7/fixed + (package + (inherit python-2.7) + (source (origin + (inherit (package-source python-2.7)) + (patches (append (search-patches "python-2.7-CVE-2021-3177.patch") + (origin-patches (package-source python-2.7)))))))) + ;; Current 2.x version. (define-public python-2 python-2.7) |