diff options
author | Christopher Baines <[email protected]> | 2021-03-05 22:56:40 +0000 |
---|---|---|
committer | Christopher Baines <[email protected]> | 2021-03-06 00:18:30 +0000 |
commit | a8448da0f4a090818104e64dd79f90b0e50d5e77 (patch) | |
tree | 494c58b4724f12cd9de0db9b0a7096de2b922c0f /gnu/packages/python.scm | |
parent | 4f4b749e75b38b8c08b4f67ef51c2c8740999e28 (diff) | |
parent | a714af38d5d1046081524d859cde4cd8fd12a923 (diff) |
Merge branch 'master' into core-updates
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) |