guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d4bdc59693b9047eb163a66ed71c9991305372cb
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Oct 23 23:46:08 2025 +0200

    gnu: python-fastimport: Update to 0.9.16.
    
    * gnu/packages/python-xyz.scm (python-fastimport): Update to 0.9.16.
    [source]: Switch to git-fetch.
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:test-backend>: Set it.
    [native-inputs]: Add python-setuptools.
    [description]: Improve style.
    
    Change-Id: Ie7888990f96ef1ffd01ef5bad02f54f81c1d1929
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a37515bc84..e181a4cb44 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22430,17 +22430,23 @@ graphviz.")
 (define-public python-fastimport
   (package
     (name "python-fastimport")
-    (version "0.9.9")
+    (version "0.9.16")
     (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "fastimport" version))
-        (sha256
-          (base32 "06gk14qgm9dxx3pzjn0ckdbywc8ial2bjfzddqwlr4bn1nnqkbll"))))
-    (build-system python-build-system)
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jelmer/python-fastimport";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1pbnp9ffjs09ngva9qcizpscxl9s47rmd4dhxl62f5iwl6c46798"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:test-backend #~'unittest))
+    (native-inputs (list python-setuptools))
     (home-page "https://github.com/jelmer/python-fastimport";)
     (synopsis "VCS fastimport parser and generator in Python")
-    (description "This package provides a parser for and generator of the Git
+    (description
+     "This package provides a parser for and generator of the Git
 
@url{https://www.kernel.org/pub/software/scm/git/docs/git-fast-import.html,fastimport}
 format.")
     (license license:gpl2+)))

Reply via email to