[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56701] [PATCH 08/19] gnu: Add python-requestsexceptions.
From: |
Hartmut Goebel |
Subject: |
[bug#56701] [PATCH 08/19] gnu: Add python-requestsexceptions. |
Date: |
Fri, 22 Jul 2022 16:02:28 +0200 |
* gnu/packages/openstack.scm (python-requestsexceptions): New variable.
---
gnu/packages/openstack.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index b791c1c076..3594179780 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -923,3 +923,28 @@ permanence.")
"Git-review is a command-line tool that helps submitting Git branches to
Gerrit for review, or fetching existing ones.")
(license asl2.0)))
+
+(define-public python-requestsexceptions
+ (package
+ (name "python-requestsexceptions")
+ (version "1.4.0")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "requestsexceptions" version))
+ (sha256
+ (base32
+ "0r9hp9yzgj8r81q5gc6r8sgxldqc09xi6ax0b7a6dw0qfv3wp5dh"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:tests? #f)) ; no tests
+ (native-inputs (list python-pbr))
+ (home-page "https://www.openstack.org/")
+ (synopsis "Import exceptions from potentially bundled packages in
+requests")
+ (description "The Python requests library bundles the urllib3 library,
+however, some software distributions modify requests to remove the bundled
+library. This makes some operations difficult, such as suppressing the
+“insecure platform warning” messages that urllib emits. This package is a
+simple library to find the correct path to exceptions in the requests library
+regardless of whether they are bundled or not.")
+ (license asl2.0)))
--
2.30.4
- [bug#56701] [PATCH 00/19] Update python-pyjwt and its dependent packages, Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 02/19] gnu: Add python-requests-kerberos., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 01/19] gnu: python-args: Make it build with Python 3., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 03/19] gnu: Add python-dogpile.cache., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 04/19] gnu: Add python-statsd., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 05/19] gnu: Add python-os-service-types., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 18/19] gnu: python-pygithub: Update to 1.55., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 08/19] gnu: Add python-requestsexceptions.,
Hartmut Goebel <=
- [bug#56701] [PATCH 14/19] gnu: python-oslo.log: Update to 5.0.0., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 17/19] gnu: python-swiftclient: Update to 4.0.1., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 09/19] gnu: Add python-openstacksdk., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 19/19] gnu: conan: Update to 1.50.0., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 06/19] gnu: Add python-oslo.concurrency., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 07/19] gnu: Add python-keystoneauth1., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 11/19] gnu: python-keystoneclient: Update to 5.0.0., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 16/19] gnu: python-pyjwt: Update to 2.4.0., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 15/19] gnu: python-tempest-lib: Update to 1.0.0., Hartmut Goebel, 2022/07/22
- [bug#56701] [PATCH 12/19] gnu: python-munch: Update to 2.5.0., Hartmut Goebel, 2022/07/22