diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-08 13:28:53 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 08:59:28 +0100 |
commit | 0033533906dfbdcf520f2e9970b38e7865d09587 (patch) | |
tree | a91061bac1c82f7e804d33b0c8f1a2a1347d2050 /gnu/packages/python-xyz.scm | |
parent | 529a367c5b1f18bf0721d7a29a0003aa01182f97 (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.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index aa26f08c4a..50221876f7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28223,9 +28223,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 |