summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-23 23:24:11 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:14:41 +0100
commitf2ffd0aee090fc3c9b9f3a1c0da23d396f1132dd (patch)
tree851fae0ac0818f266aed230f14cd0e66aefdcd82 /gnu/packages/python-web.scm
parent4519ac56dd48d69bc7a49d91b92ea2da87ba6b5f (diff)
gnu: python-aioftp: Fix tests.
* gnu/packages/python-web.scm (python-aioftp): Fix tests. [source]: Switch to git-fetch. [native-inputs]: Add python-pytest-mock. Change-Id: I73a89803ad17148e590823a79c83ee8feade2371
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm16
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 3d571662dda..4a743ab1e08 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7227,16 +7227,20 @@ adapter for use with the Requests library.")
7227 (package 7227 (package
7228 (name "python-aioftp") 7228 (name "python-aioftp")
7229 (version "0.27.2") 7229 (version "0.27.2")
7230 (source (origin 7230 (source
7231 (method url-fetch) 7231 (origin
7232 (uri (pypi-uri "aioftp" version)) 7232 (method git-fetch)
7233 (sha256 7233 (uri (git-reference
7234 (base32 7234 (url "https://github.com/aio-libs/aioftp")
7235 "06i6xfxxrwncmgihp98jxhy7xngsv2gzv9ijk32rc5q840r8q13w")))) 7235 (commit version)))
7236 (file-name (git-file-name name version))
7237 (sha256
7238 (base32 "1lshyac5zk1w4x7ygkim3726f8gbkvpvlyiqkn9cs6qjxhxn5bxc"))))
7236 (build-system pyproject-build-system) 7239 (build-system pyproject-build-system)
7237 (native-inputs 7240 (native-inputs
7238 (list python-async-timeout 7241 (list python-async-timeout
7239 python-pytest 7242 python-pytest
7243 python-pytest-mock
7240 python-pytest-asyncio 7244 python-pytest-asyncio
7241 python-setuptools 7245 python-setuptools
7242 python-siosocks 7246 python-siosocks