diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-06 14:22:02 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-11 21:18:09 +0100 |
commit | 6d9ee4ca39b3baa3782cb1c5fe0498649ce1cb99 (patch) | |
tree | c2832629b48bad9fa7cd04095c1166f7716dd598 | |
parent | 197e4ef91d3817e273b9a6612d132775495d750c (diff) |
gnu: python-dbus-python: Add missing input.
* gnu/packages/python-xyz.scm (python-dbus-python)[native-inputs]: Add
python-setuptools.
Change-Id: I3b813a5a3edcc878b552aa7885a47c1079d7acda
-rw-r--r-- | gnu/packages/python-xyz.scm | 60 |
1 files changed, 31 insertions, 29 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 759f1331a3..b13c964871 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30070,36 +30070,38 @@ for YAML and JSON.") (define-public python-dbus-python (package - (name "python-dbus-python") - (version "1.3.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "dbus-python" version)) - (sha256 - (base32 "1y28h90v2ib8zqhs3r2yr7ycg8ccwvw3gqkvadlm12v1129q2rxd")))) - (build-system pyproject-build-system) - (arguments - (list #:phases #~(modify-phases %standard-phases - (add-after 'unpack 'patch-requirements - (lambda _ - (substitute* (list "pyproject.toml" "setup.py") - (("'(ninja|patchelf)',?") "")) - (substitute* "setup.cfg" - (("(ninja|patchelf)") ""))))))) - (inputs (list dbus glib)) - (propagated-inputs (list python-pygobject)) - (native-inputs (list pkg-config - python-meson-python - meson ninja patchelf - python-sphinx python-sphinx-rtd-theme - python-tappy - python-wheel)) - (home-page "https://dbus.freedesktop.org/doc/dbus-python/") - (synopsis "Python bindings for libdbus") - (description "This package provides Python bindings to libdbus, the + (name "python-dbus-python") + (version "1.3.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dbus-python" version)) + (sha256 + (base32 "1y28h90v2ib8zqhs3r2yr7ycg8ccwvw3gqkvadlm12v1129q2rxd")))) + (build-system pyproject-build-system) + (arguments + (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'patch-requirements + (lambda _ + (substitute* (list "pyproject.toml" "setup.py") + (("'(ninja|patchelf)',?") "")) + (substitute* "setup.cfg" + (("(ninja|patchelf)") ""))))))) + (inputs (list dbus glib)) + (propagated-inputs (list python-pygobject)) + (native-inputs (list pkg-config + python-meson-python + meson ninja patchelf + python-setuptools + python-sphinx + python-sphinx-rtd-theme + python-tappy + python-wheel)) + (home-page "https://dbus.freedesktop.org/doc/dbus-python/") + (synopsis "Python bindings for libdbus") + (description "This package provides Python bindings to libdbus, the reference implementation of the D-Bus protocol.") - (license license:expat))) + (license license:expat))) (define-public python-dbusmock (package |