summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-08 13:28:53 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:22 +0100
commitf822974d9e2f0c730ffc3e9bed7d24b686d21c0a (patch)
treeed2ee1013063365cc098c3e9e67626aa58bfbce9 /gnu/packages/python-xyz.scm
parent5db6f444b9f5fd2d015a086f7e3e6f217c1c2ccb (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4c1195a90c..7564e35a85 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28155,9 +28155,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