diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-17 18:49:18 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:23 +0100 |
| commit | df41175c65fb767eaa95ccdba556cdbd1a471c14 (patch) | |
| tree | 5d23c9f5e4a66102d1ab9ee4f4fb4f0f9feee4fb /gnu/packages/admin.scm | |
| parent | d8a799c774d570e9747c72c05e94d15db5cf039a (diff) | |
gnu: solaar: Switch to pyproject.
* gnu/packages/admin.scm (solaar)[build-system]: Switch to
pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel, python-pytest-mock
and python-typing-extensions.
Change-Id: Ic4bebcf4d616d759c184eb096cbc085d505935fd
Diffstat (limited to 'gnu/packages/admin.scm')
| -rw-r--r-- | gnu/packages/admin.scm | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 4a791d8e2c1..2cd866081fe 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -5125,23 +5125,22 @@ cache of unix and unix-like systems.") (package (name "solaar") (version "1.1.14") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pwr-Solaar/Solaar") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "000700waw4z6ab40naycapjgqz8yvz9ny1px94ni4pwf8f3kh0vh")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'build 'setenv-PATH - (lambda _ - (setenv "PYTHONPATH" "lib")))))) - (native-inputs (list python-pytest)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pwr-Solaar/Solaar") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "000700waw4z6ab40naycapjgqz8yvz9ny1px94ni4pwf8f3kh0vh")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-pytest-mock + python-setuptools + python-typing-extensions + python-wheel)) (propagated-inputs (list python-pygobject python-pyudev |
