summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-19 15:59:53 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-20 16:18:49 +0100
commitb4d40e0ecaf9f7b58e8ad29909fab81fa3dd5342 (patch)
tree875762b673471d2046e37c42f905d4a6076869f4
parent2687ad784749066e01a94b2c73359e9206b02309 (diff)
gnu: python-requests-mock: Update to 1.12.1.
* gnu/packages/python-web.scm (python-requests-mock): Update to 1.12.1. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Remove python-six. [native-inputs]: Remove python-pbr, python-discover, python-docutils, python-fixtures, python-mock, python-sphinx, and python-testrepository; add python-requests-futures, python-setuptools, python-setuptools-scm, and python-testtools. Change-Id: I24229600b9bc6a91b771f69de06322c0f82a6339
-rw-r--r--gnu/packages/python-web.scm24
1 files changed, 10 insertions, 14 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index b1f419360c..16bd275b82 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5354,27 +5354,23 @@ library.")
(define-public python-requests-mock
(package
(name "python-requests-mock")
- (version "1.8.0")
+ (version "1.12.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "requests-mock" version))
(sha256
- (base32
- "09nj8fmyj7xz2mgwyvbw0fl9zybmx2d3qd2hf529vvjc9s24d3z6"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-requests python-six))
+ (base32 "008l6xysgs6ax56lairg1li5i4bb04i2z19w5bl5claj7crjxqg9"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pbr
- python-discover
- python-docutils
- python-fixtures
- python-mock
- python-purl
+ (list python-purl
python-pytest
- python-sphinx
- python-testrepository))
+ python-requests-futures
+ python-setuptools
+ python-setuptools-scm
+ python-testtools))
+ (propagated-inputs
+ (list python-requests))
(home-page "https://requests-mock.readthedocs.org/")
(synopsis "Mock out responses from the requests package")
(description