diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-16 01:20:44 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:43 +0200 |
commit | 38e27332d62fef19f5003c36258b7f045c29a8e8 (patch) | |
tree | 8dd3b5bda448bb7a2d3046bed85d60111e0e45a2 /gnu/packages/python-web.scm | |
parent | 4f13ad4aa4073e516fb6cffc466e326ff72aa2df (diff) | |
download | guix-38e27332d62fef19f5003c36258b7f045c29a8e8.tar.gz guix-38e27332d62fef19f5003c36258b7f045c29a8e8.zip |
gnu: Add nss-certs-for-test.
* gnu/packages/certs.scm (nss-certs-for-test): New variable.
* gnu/packages/python-web.scm (python-requests-next)[native-inputs]: Add it.
Change-Id: Id808e058835556717a6585ecd86dd14d0d2a5039
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 5bc57fe0e5..1ca13c9bf9 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -66,6 +66,7 @@ ;;; Copyright © 2024 normally_js <normally_js@posteo.net> ;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi> ;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org> +;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -96,6 +97,7 @@ #:use-module (gnu packages admin) #:use-module (gnu packages base) #:use-module (gnu packages bash) + #:use-module (gnu packages certs) #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages crates-io) @@ -3677,6 +3679,8 @@ than Python’s urllib2 library.") (base32 "0q5742pnibwy74169kacin3dmqg9jzmzk7qab5aq5caffcbm8djm")))) (build-system python-build-system) + (native-inputs + (list nss-certs-for-test)) (propagated-inputs (list python-certifi python-charset-normalizer |