diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-07-05 06:51:54 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-07-05 06:51:54 +0300 |
| commit | 8b7c40915e4f48efa23aee9fc20e9ed3acbd1006 (patch) | |
| tree | 28ab8719a73fa785877d64c89b5886c31bd599f7 | |
| parent | wigust: Add xorg.scm. (diff) | |
| download | guix-wigust-8b7c40915e4f48efa23aee9fc20e9ed3acbd1006.tar.gz | |
wigust: Add python-requests-2.18.
* wigust/packages/python.scm (python-requests-2.18): New variable.
| -rw-r--r-- | wigust/packages/python.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/wigust/packages/python.scm b/wigust/packages/python.scm index fca2f40..7dd29c3 100644 --- a/wigust/packages/python.scm +++ b/wigust/packages/python.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2017 Oleg Pykhalov <go.wigust@gmail.com> +;;; Copyright © 2017, 2018 Oleg Pykhalov <go.wigust@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -104,6 +104,19 @@ (description "Vim-like file manager") (license #f))) +(define-public python-requests-2.18 + (package + (inherit python-requests) + (version "2.18.0") + (name (string-append (package-name python-requests) "-" version)) + (source + (origin + (method url-fetch) + (uri (pypi-uri "requests" version)) + (sha256 + (base32 + "0p7awxhzd81fwmjbsrx1bb0xkd4f8ynxmz8myyzq8wkqcbwqj0fd")))))) + (define-public python-github (let ((commit "c82e90e5bd65eaadeabbdbbbe37bc7e3dc295b3e") (revision "1")) |
