guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ec42ea291fd6e48de373fff5ea133e57b887c9e1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Aug 8 13:28:53 2025 +0100
gnu: python-pyclibrary: Adjust inputs.
* gnu/packages/python-xyz.scm (python-pyclibrary)
[propagated-inputs]: Remove python-pyparsing-2.4.7; add
python-pyparsing.
[native-inputs]: Remove python-wheel.
Change-Id: Ifc03f143b92ebedfc938f7feb6363e5c96b064c1
---
gnu/packages/python-xyz.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index dd78c32e98..89bc64d79f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28209,9 +28209,12 @@ Rust Python extensions implemented with @code{PyO3} or
@code{rust-cpython}.")
(add-after 'unpack 'set-version
(lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" "0.2.2"))))))
- (native-inputs (list python-pytest python-setuptools
- python-setuptools-scm python-wheel))
- (propagated-inputs (list python-pyparsing-2.4.7))
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-pyparsing))
(home-page "https://github.com/MatthieuDartiailh/pyclibrary")
(synopsis "Wrap dynamic libraries in Python")
(description