tests: guix-shell-export-manifest: Fix pyproject-build-system python test.

This is a follow-up to commit
    fdc0fefd46
    build-system/pyproject: Use python-sans-pip-wrapper as default-python.

* tests/guix-shell-export-manifest.sh: Grep for python-sans-pip-wrapper, which
is the python now used by the pyproject-build-system.

Change-Id: I5f44e07544f80973fa6b306b2dcdf42ac3b56ad6
This commit is contained in:
Janneke Nieuwenhuizen 2024-12-14 01:24:43 +01:00
parent 4a6ca99824
commit 84de473132
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -1,5 +1,6 @@
# GNU Guix --- Functional package management for GNU # GNU Guix --- Functional package management for GNU
# Copyright © 2022 Ludovic Courtès <ludo@gnu.org> # Copyright © 2022 Ludovic Courtès <ludo@gnu.org>
# Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
# #
# This file is part of GNU Guix. # This file is part of GNU Guix.
# #
@ -83,7 +84,7 @@ guix build -m "$manifest" -d | \
guix shell --export-manifest -D guile -D python-itsdangerous > "$manifest" guix shell --export-manifest -D guile -D python-itsdangerous > "$manifest"
guix build -m "$manifest" -d | grep "$(guix build libffi -d)" guix build -m "$manifest" -d | grep "$(guix build libffi -d)"
guix build -m "$manifest" -d | \ guix build -m "$manifest" -d | \
grep "$(guix build -e '(@ (gnu packages python) python)' -d)" grep "$(guix build -e '(@ (gnu packages python) python-sans-pip-wrapper)' -d)"
# Test various combinations to make sure generated code uses interfaces # Test various combinations to make sure generated code uses interfaces
# correctly. # correctly.