guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 95d9fd22d8dde6d7cabfce1fac77ef2c12c81d4d
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Dec 28 23:01:40 2025 +0100

    gnu: python-hg-evolve: Switch to pyproject.
    
    * gnu/packages/version-control.scm (python-hg-evolve):
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    
    Change-Id: Ibb3988dc6ce39b8bfe3b55808ce01b30df9c3d82
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/version-control.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 6180006080..3a945a2b54 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -2835,12 +2835,12 @@ interface.")
         (sha256
           (base32
             "09rq3hgbb6qjws0kymnh8lbglsc5yjby3b2bc0savs2agf88j83z"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments
      ;; Tests need mercurial source code.
-     '(#:tests? #f))
-    (propagated-inputs
-      (list mercurial))
+     (list #:tests? #f))
+    (native-inputs (list python-setuptools))
+    (propagated-inputs (list mercurial))
     (home-page "https://www.mercurial-scm.org/doc/evolution/";)
     (synopsis "Flexible evolution of Mercurial history")
     (description "Evolve is a Mercurial extension for faster and safer mutable

Reply via email to