From d33edea8ed470167d53a3b691d01338414630435 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 18 Jan 2026 21:55:55 +0100 Subject: [PATCH] gnu: python-aioftp: Update to 0.27.2. * gnu/packages/python-web.scm (python-aioftp): Update to 0.27.2. [native-inputs]: Add python-pytest-mock, python-siosocks. Remove python-wheel. [propagated-inputs]: Add python-typing-extension. Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-web.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 7cf307de54..9d9e344484 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6985,23 +6985,23 @@ adapter for use with the Requests library.") (define-public python-aioftp (package (name "python-aioftp") - (version "0.22.3") + (version "0.27.2") (source (origin (method url-fetch) (uri (pypi-uri "aioftp" version)) (sha256 (base32 - "0w621mg956m9rn7v39jpwi4gpnpl90pprwl29cp640dahqqv38ms")))) + "06i6xfxxrwncmgihp98jxhy7xngsv2gzv9ijk32rc5q840r8q13w")))) (build-system pyproject-build-system) (native-inputs (list python-async-timeout python-pytest python-pytest-asyncio python-pytest-cov + python-pytest-mock python-setuptools - python-trustme - python-wheel)) - (propagated-inputs (list python-siosocks)) + python-siosocks + python-trustme)) (home-page "https://aioftp.readthedocs.io/") (synopsis "FTP client/server for asyncio in Python") (description