mbakke pushed a commit to branch staging2
in repository guix.
commit 37810517825e65ee64e0d2cded6eaa31d3054388
Author: Marius Bakke <[email protected]>
AuthorDate: Thu May 14 23:05:18 2020 +0200
gnu: python-certifi: Update to 2020.4.5.1.
* gnu/packages/python-crypto.scm (python-certifi): Update to 2020.4.5.1.
[arguments]: New field. Explicitly disable tests.
---
gnu/packages/python-crypto.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index e6208ab..5399e32 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -448,14 +448,15 @@ risk.")
(define-public python-certifi
(package
(name "python-certifi")
- (version "2019.3.9")
+ (version "2020.4.5.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "certifi" version))
(sha256
(base32
- "1bnpw7hrf9i1l9gfxjnzi45hkrvzz0pyn9ia8m4mw7sxhgb08qdj"))))
+ "06b5gfs7wmmipln8f3z928d2mmx2j4b3x7pnqmj6cvmyfh8v7z2i"))))
(build-system python-build-system)
+ (arguments '(#:tests? #f)) ;no tests
(home-page "https://certifi.io/")
(synopsis "Python CA certificate bundle")
(description