diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-26 19:46:16 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 20:27:24 +0000 |
| commit | 5ae2a57955bbf7e6627adca162a9cddb1abf53ad (patch) | |
| tree | 796bc158e2c850d9f60e467069efd4dc616f1403 | |
| parent | 74d3a8088337cd033e6d2a78c2e571c9006b1b49 (diff) | |
gnu: python-pynamecheap: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-pynamecheap):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
Change-Id: Ie66ad3da1f59f3259955f216a452c4f75d2c08ef
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 419844d8cfd..521623b50bf 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27599,15 +27599,13 @@ environments.") (method url-fetch) (uri (pypi-uri "PyNamecheap" version)) (sha256 - (base32 - "0wkbwz208j8nfrsmzmclvxg22ymknn0mlz76wbdza9k2bx2zja6l")))) - (build-system python-build-system) - (propagated-inputs - (list python-requests)) - (home-page - "https://github.com/Bemmu/PyNamecheap") - (synopsis - "Namecheap API client in Python") + (base32 "0wkbwz208j8nfrsmzmclvxg22ymknn0mlz76wbdza9k2bx2zja6l")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests. + (native-inputs (list python-setuptools)) + (propagated-inputs (list python-requests)) + (home-page "https://github.com/Bemmu/PyNamecheap") + (synopsis "Namecheap API client in Python") (description "PyNamecheap is a Namecheap API client in Python.") (license license:expat))) |
