summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-14 12:04:21 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-14 12:28:44 +0100
commit678bf175e0ccf4cfdcbb8171b4a60add584b3775 (patch)
tree47daa19fd62481fe4a126e5930dd7b50434ad74a /gnu
parent035bd6b02eee577aa014c677a64a5f547e2ce2a9 (diff)
gnu: hatch: Adjust inputs.
hatch is a final program which is not meant to be used as Python library, this change move all propagated inputs to inputs. * gnu/packages/python-xyz.scm (hatch)[propagated-inputs]: Move from here ... [inputs]: ... to here. Change-Id: I84feebbefd20db7656831becc8a62fff100e716d
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm53
1 files changed, 28 insertions, 25 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4b0694940ab..667c91115c1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33000,31 +33000,34 @@ cleanly print different types of messages.")
"-k" (string-append
"not test_project_location_basic_set_first_project"
" and not test_project_location_complex_set_first_project"))
- #:phases #~(modify-phases %standard-phases
- (add-before 'check 'pre-check
- (lambda _
- (setenv "HOME" "/tmp"))))))
- (native-inputs (list git-minimal
- nss-certs-for-test
- python-hatch-vcs
- python-pytest
- python-pytest-mock
- python-pytest-xdist))
- (propagated-inputs (list python-click
- python-hatchling-for-hatch
- python-httpx
- python-hyperlink
- python-keyring
- python-packaging
- python-pexpect
- python-platformdirs
- python-rich
- python-shellingham
- python-tomli-w
- python-tomlkit
- python-userpath
- python-virtualenv-for-hatch
- python-zstandard))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'pre-check
+ (lambda _
+ (setenv "HOME" "/tmp"))))))
+ (native-inputs
+ (list git-minimal
+ nss-certs-for-test
+ python-hatch-vcs
+ python-pytest
+ python-pytest-mock
+ python-pytest-xdist))
+ (inputs
+ (list python-click
+ python-hatchling-for-hatch
+ python-httpx
+ python-hyperlink
+ python-keyring
+ python-packaging
+ python-pexpect
+ python-platformdirs
+ python-rich
+ python-shellingham
+ python-tomli-w
+ python-tomlkit
+ python-userpath
+ python-virtualenv-for-hatch
+ python-zstandard))
(home-page "https://hatch.pypa.io/latest/")
(synopsis "Python project management")
(description "Hatch is a modern, extensible Python project manager.