summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-06-13 11:59:36 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-14 09:42:25 +0100
commitabcecd2e2a43e1505ac6dd2ab023f59f86098957 (patch)
tree4b53585a4e48395f11b88e7d6ab6fa15bd34b0ac /gnu/packages
parent047fa67e48edd5be64d7f18797f1af72451e6e8f (diff)
gnu: python-weasel: Update to 1.0.0.
* gnu/packages/python-web.scm (python-weasel): Update to 1.0.0. [source]: Switch to git-fetch. [arguments]<#:test-flags>: Ignore an additional test. [progagated-inputs]: Remove python-requests. Add python-httpx. Relates-to: guix/guix!9270 Reviewed-by: Cayetano Santos <csantosb@inventati.org> Change-Id: Ib80ad9d9e67a0d637e8869723b566ce13cac9c07 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm20
1 files changed, 13 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 99f0b1e09e9..962220a1573 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5275,19 +5275,25 @@ with very acceptable performance.")
5275(define-public python-weasel 5275(define-public python-weasel
5276 (package 5276 (package
5277 (name "python-weasel") 5277 (name "python-weasel")
5278 (version "0.4.1") 5278 (version "1.0.0")
5279 (source 5279 (source
5280 (origin 5280 (origin
5281 (method url-fetch) 5281 (method git-fetch)
5282 (uri (pypi-uri "weasel" version)) 5282 (uri (git-reference
5283 (url "https://github.com/explosion/weasel/")
5284 (commit (string-append "release-v" version))))
5285 (file-name (git-file-name name version))
5283 (sha256 5286 (sha256
5284 (base32 "1aas113r29y6yxrmdlsw80rj8w4kgw1jhfjw9rsgc4rf0w7j3g5a")))) 5287 (base32 "1sxcxri9hl9rs1kvdrv81g6mlg7lifhq9xacskracz63v4nyh8na"))))
5285 (build-system pyproject-build-system) 5288 (build-system pyproject-build-system)
5286 (arguments 5289 (arguments
5287 (list 5290 (list
5288 #:test-flags 5291 #:test-flags
5289 ;; Network access is required. 5292 ;; This test raises an error, but not the one expected by pytest.
5290 #~(list #$@(map (lambda (test) (string-append "--deselect=" 5293 #~(list (string-append "--deselect=weasel/tests/test_validation.py::"
5294 "test_project_config_interpolation[10_0]")
5295 ;; Network access is required.
5296 #$@(map (lambda (test) (string-append "--deselect="
5291 "weasel/tests/cli/" 5297 "weasel/tests/cli/"
5292 test)) 5298 test))
5293 (list "test_cli.py::test_project_git_dir_asset" 5299 (list "test_cli.py::test_project_git_dir_asset"
@@ -5299,9 +5305,9 @@ with very acceptable performance.")
5299 (propagated-inputs 5305 (propagated-inputs
5300 (list python-cloudpathlib 5306 (list python-cloudpathlib
5301 python-confection 5307 python-confection
5308 python-httpx
5302 python-packaging 5309 python-packaging
5303 python-pydantic 5310 python-pydantic
5304 python-requests
5305 python-smart-open 5311 python-smart-open
5306 python-srsly 5312 python-srsly
5307 python-typer 5313 python-typer