summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorHugo Buddelmeijer <hugo@buddelmeijer.nl>2025-12-14 16:11:55 +0100
committerAndreas Enge <andreas@enge.fr>2025-12-17 11:20:18 +0100
commit7b52ea8ccbab74ba14dceabae5a0613721bbd7f1 (patch)
tree5d32bb0d131aa3fe39f2b060c1be26fc9ee81b8e /gnu/packages/python-web.scm
parented73da496b2299298dd7f9a0092692be62fd5ac6 (diff)
gnu: python-aiohttp-client-cache: Update to 0.14.2.
* gnu/packages/python-web.scm (python-aiohttp-client-cache): Update to 0.14.2. [source]: Switch to git-fetch. [native-inputs]: Remove python-poetry-core and python-pytest-cov; add python-hatchling. Change-Id: Ie6bc8ad470c6fc47867d8dc51df9d7503c797588 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 372bfee5ea9..00c13c0a203 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2074,13 +2074,17 @@ provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients."
(define-public python-aiohttp-client-cache
(package
(name "python-aiohttp-client-cache")
- (version "0.13.0")
+ (version "0.14.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "aiohttp_client_cache" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/requests-cache/aiohttp-client-cache")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0lrq8fh94whvfmfr9ncfizq2ssa2fp1v1izd1y7f3gmd80ixcp6w"))))
+ (base32
+ "17qa2sh63wa7b9ma40y2b6k9sjscc5vfwlmf46sv36l1mz9rmd4y"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -2088,7 +2092,7 @@ provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients."
;; Run unit tests only which not require networking or additional setup.
#~(list "--ignore=test/integration")))
(native-inputs
- (list python-poetry-core
+ (list python-hatchling
;; TODO: Missing packages: pytest-clarity,
;; nox-poetry, types-aiofiles.
python-async-timeout
@@ -2097,7 +2101,6 @@ provide an easy-to-use Python interface for building OAuth1 and OAuth2 clients."
python-pytest
python-pytest-aiohttp
python-pytest-asyncio
- python-pytest-cov
python-pytest-xdist))
(propagated-inputs
(list python-aiofiles