summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-01 20:48:34 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:29 +0100
commit86b1a3a1b19a50b0c758d68dc69665951ff37f35 (patch)
tree37e81bcc10c55f899c9cd37a4d6344ffa1d55db2 /gnu/packages/python-xyz.scm
parente9b2aec4c76c7b50b7713ba80a40da181b4efd3f (diff)
gnu: python-flit: Relax python-pip requirement.
The new sanity-check makes this package fail. * gnu/packages/python-xyz.scm (python-flit)[arguments]<#:phases>: Add phase 'relax-pip-requirement. Change-Id: Ib3023182667469c9683f0c63ccbd165276af3202 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fc4dae56dc8..4a46ed213ee 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29153,6 +29153,13 @@ and not test_install_requires_extra \
and not test_validate_classifiers_private")
#:phases
#~(modify-phases %standard-phases
+ (add-after 'unpack 'relax-pip-requirement
+ ;; python -m pip is available by default, no need to
+ ;; propagate pip.
+ (lambda _
+ (substitute* "pyproject.toml"
+ (("\"pip\",")
+ ""))))
(add-before 'check 'pre-check
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
(when tests?