summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-10 22:42:05 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-10 22:47:36 +0100
commitf6d1a9920648ba8561dfbed339fb92416c68ad23 (patch)
tree4c7b20afe1b4c6740db61cae18bb3b43af17d763 /gnu/packages/python-web.scm
parent812f14a834f69bb558e2c12fadffcd27aede67fb (diff)
gnu: python-cheroot: Reduce closure size.
* gnu/packages/python-web.scm (python-cheroot)[native-inputs]: Remove python-pypytools and python-requests-unixsocket2. Relates-to: guix/guix#7475
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 480a2900557..93552321839 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4101,6 +4101,12 @@ other HTTP libraries.")
4101 (build-system pyproject-build-system) 4101 (build-system pyproject-build-system)
4102 (arguments 4102 (arguments
4103 (list 4103 (list
4104 ;; tests: 150 passed, 3 xfailed, 7 warnings
4105 #:test-flags
4106 ;; To prevent dependency on python-pypytools which depends on python-py
4107 ;; both marked as deprecated by maintainers, see:
4108 ;; <https://codeberg.org/guix/guix/issues/7475>.
4109 #~(list "--ignore=cheroot/test/test_server.py")
4104 #:phases 4110 #:phases
4105 #~(modify-phases %standard-phases 4111 #~(modify-phases %standard-phases
4106 (add-after 'unpack 'fix-pytest-config 4112 (add-after 'unpack 'fix-pytest-config
@@ -4110,12 +4116,10 @@ other HTTP libraries.")
4110 (native-inputs 4116 (native-inputs
4111 (list python-portend 4117 (list python-portend
4112 python-pyopenssl 4118 python-pyopenssl
4113 python-pypytools
4114 python-pytest 4119 python-pytest
4115 python-pytest-mock 4120 python-pytest-mock
4116 python-requests 4121 python-requests
4117 python-requests-toolbelt 4122 python-requests-toolbelt
4118 python-requests-unixsocket2
4119 python-setuptools 4123 python-setuptools
4120 python-setuptools-scm 4124 python-setuptools-scm
4121 python-trustme)) 4125 python-trustme))