guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 728699c8e09bda249089f33c590949cc9fa633fe
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Tue Jun 17 18:49:18 2025 +0100

    gnu: solaar: Use pyproject-build-system.
    
    * gnu/packages/admin.scm (solaar) [build-system]: Use pyproject.
    [native-inputs]: Add python-setuptools, python-wheel, python-pytest-mock
    and python-typing-extensions.
    
    Change-Id: Ic4bebcf4d616d759c184eb096cbc085d505935fd
---
 gnu/packages/admin.scm | 33 ++++++++++++++++-----------------
 1 file changed, 16 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 1b917f30ee..b0d44f6584 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -5097,23 +5097,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

Reply via email to