diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-03-24 01:46:34 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-24 10:14:43 +0100 |
| commit | 114761018346b31c409d434d34cc04ff4b12abe6 (patch) | |
| tree | 39fd4445c9b68d1adfbddf7e6af0f9c52ee08b85 /tests | |
| parent | 219b12a06a5f5b226973d0bb0f1f6779c8360fad (diff) | |
tests: packages: Switch to pyproject-build-system.
* tests/packages.scm ("package-input-rewriting, deep")
("package-input-rewriting/spec, no duplicates"):
Switch to pyproject-build-system.
Change-Id: I428af596a021e16ba6226e55910be24424e4a625
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/packages.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/packages.scm b/tests/packages.scm index 0e0a1bd16eb..e5f2119b5e4 100644 --- a/tests/packages.scm +++ b/tests/packages.scm | |||
| @@ -43,7 +43,7 @@ | |||
| 43 | #:use-module (guix build-system) | 43 | #:use-module (guix build-system) |
| 44 | #:use-module (guix build-system trivial) | 44 | #:use-module (guix build-system trivial) |
| 45 | #:use-module (guix build-system gnu) | 45 | #:use-module (guix build-system gnu) |
| 46 | #:use-module (guix build-system python) | 46 | #:use-module (guix build-system pyproject) |
| 47 | #:use-module (guix memoization) | 47 | #:use-module (guix memoization) |
| 48 | #:use-module (guix profiles) | 48 | #:use-module (guix profiles) |
| 49 | #:use-module (guix scripts package) | 49 | #:use-module (guix scripts package) |
| @@ -1548,8 +1548,8 @@ | |||
| 1548 | (test-eq "package-input-rewriting, deep" | 1548 | (test-eq "package-input-rewriting, deep" |
| 1549 | (derivation-file-name (package-derivation %store sed)) | 1549 | (derivation-file-name (package-derivation %store sed)) |
| 1550 | (let* ((p0 (dummy-package "chbouib" | 1550 | (let* ((p0 (dummy-package "chbouib" |
| 1551 | (build-system python-build-system) | 1551 | (build-system pyproject-build-system) |
| 1552 | (arguments `(#:python ,python)))) | 1552 | (arguments (list #:python python)))) |
| 1553 | (rewrite (package-input-rewriting `((,python . ,sed)))) | 1553 | (rewrite (package-input-rewriting `((,python . ,sed)))) |
| 1554 | (p1 (rewrite p0))) | 1554 | (p1 (rewrite p0))) |
| 1555 | (match (bag-direct-inputs (package->bag p1)) | 1555 | (match (bag-direct-inputs (package->bag p1)) |
| @@ -1682,9 +1682,9 @@ | |||
| 1682 | (build-system trivial-build-system) | 1682 | (build-system trivial-build-system) |
| 1683 | (propagated-inputs `(("python" ,python))))) | 1683 | (propagated-inputs `(("python" ,python))))) |
| 1684 | (p0 (dummy-package "chbouib" | 1684 | (p0 (dummy-package "chbouib" |
| 1685 | (build-system python-build-system) | 1685 | (build-system pyproject-build-system) |
| 1686 | (arguments `(#:python ,python)) | 1686 | (arguments (list #:python python)) |
| 1687 | (inputs `(("dep0" ,dep0))))) | 1687 | (inputs (list dep0)))) |
| 1688 | (rewrite (package-input-rewriting/spec '() #:deep? #t)) | 1688 | (rewrite (package-input-rewriting/spec '() #:deep? #t)) |
| 1689 | (p1 (rewrite p0)) | 1689 | (p1 (rewrite p0)) |
| 1690 | (bag1 (package->bag p1)) | 1690 | (bag1 (package->bag p1)) |
