This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ccb05fcf5e import: pypi: Fix refesh --target-version fetches wrong 
wheel.
ccb05fcf5e is described below

commit ccb05fcf5ea1e25a863a427e002557a6a1061363
Author: Hartmut Goebel <[email protected]>
AuthorDate: Sun Oct 12 21:58:00 2025 +0200

    import: pypi: Fix refesh --target-version fetches wrong wheel.
    
    * guix/import/pypi.scm(pypi-package->upstream-source): Pass version to
    pypi-package-inputs.
    
    Fixes: #3417
    Change-Id: I0d56c362afcd3b15441530e57f015f1ceee14752
    Signed-off-by: Maxim Cournoyer <[email protected]>
---
 guix/import/pypi.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm
index 326e4453b2..9bd773b716 100644
--- a/guix/import/pypi.scm
+++ b/guix/import/pypi.scm
@@ -578,7 +578,7 @@ VERSION."
         (if (distribution-has-signature? dist)
             (list (string-append source-url ".asc"))
             #f))
-       (inputs (append (pypi-package-inputs pypi-package)
+       (inputs (append (pypi-package-inputs pypi-package version)
                        extra-inputs))
        (package (project-info-name info))
        (version version)))))

Reply via email to