diff options
author | fanquake <fanquake@gmail.com> | 2021-12-30 20:43:02 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-01-05 10:32:24 +0800 |
commit | 84f9931cb44932751415f2ca48501ba01eed39a6 (patch) | |
tree | d7889da81445c27bccd074aa8b5777c4fe65ddb3 | |
parent | 187dc1ec0c867ffcf44f607bbb928909d86a81ca (diff) |
guix: use upstream python-requests (2.26.0)
Upstream python requests is now modern enough to be used as a dependency for
signapple. Which requires requests>=2.25.1.
-rw-r--r-- | contrib/guix/manifest.scm | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/contrib/guix/manifest.scm b/contrib/guix/manifest.scm index e01365cce3..3528030bec 100644 --- a/contrib/guix/manifest.scm +++ b/contrib/guix/manifest.scm @@ -409,16 +409,6 @@ certificates or paths. Supports various options, including: validation at a specific moment in time, whitelisting and revocation checks.") (license license:expat)))) -(define-public python-requests-2.25.1 - (package (inherit python-requests) - (version "2.25.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "requests" version)) - (sha256 - (base32 - "015qflyqsgsz09gnar69s6ga74ivq5kch69s4qxz3904m7a3v5r7")))))) - (define-public python-altgraph (package (name "python-altgraph") @@ -511,7 +501,7 @@ and endian independent.") ("python-oscrypto" ,python-oscrypto) ("python-certvalidator" ,python-certvalidator) ("python-elfesteem" ,python-elfesteem) - ("python-requests" ,python-requests-2.25.1) + ("python-requests" ,python-requests) ("python-macholib" ,python-macholib) ("libcrypto" ,openssl))) ;; There are no tests, but attempting to run python setup.py test leads to |