mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
tests: Adjust opam and pypi tests to simplified inputs.
* tests/opam.scm ("opam->guix-package"): Expect simplified inputs. * tests/pypi.scm ("pypi->guix-package, package name contains \"-\" followed by digits"): Likewise.
This commit is contained in:
parent
7d043abfdb
commit
bcff9d6388
2 changed files with 4 additions and 13 deletions
|
@ -102,13 +102,9 @@ (define test-repo
|
||||||
('base32
|
('base32
|
||||||
(? string? hash)))))
|
(? string? hash)))))
|
||||||
('build-system 'ocaml-build-system)
|
('build-system 'ocaml-build-system)
|
||||||
('propagated-inputs
|
('propagated-inputs ('list 'ocaml-zarith))
|
||||||
('quasiquote
|
|
||||||
(("ocaml-zarith" ('unquote 'ocaml-zarith)))))
|
|
||||||
('native-inputs
|
('native-inputs
|
||||||
('quasiquote
|
('list 'ocaml-alcotest 'ocamlbuild))
|
||||||
(("ocaml-alcotest" ('unquote 'ocaml-alcotest))
|
|
||||||
("ocamlbuild" ('unquote 'ocamlbuild)))))
|
|
||||||
('home-page "https://example.org/")
|
('home-page "https://example.org/")
|
||||||
('synopsis "Some example package")
|
('synopsis "Some example package")
|
||||||
('description "This package is just an example.")
|
('description "This package is just an example.")
|
||||||
|
|
|
@ -416,13 +416,8 @@ (define test-metadata-with-extras-jedi "\
|
||||||
(? string? hash)))))
|
(? string? hash)))))
|
||||||
('properties ('quote (("upstream-name" . "foo-99"))))
|
('properties ('quote (("upstream-name" . "foo-99"))))
|
||||||
('build-system 'python-build-system)
|
('build-system 'python-build-system)
|
||||||
('propagated-inputs
|
('propagated-inputs ('list 'python-bar 'python-foo))
|
||||||
('quasiquote
|
('native-inputs ('list 'python-pytest))
|
||||||
(("python-bar" ('unquote 'python-bar))
|
|
||||||
("python-foo" ('unquote 'python-foo)))))
|
|
||||||
('native-inputs
|
|
||||||
('quasiquote
|
|
||||||
(("python-pytest" ('unquote 'python-pytest)))))
|
|
||||||
('home-page "http://example.com")
|
('home-page "http://example.com")
|
||||||
('synopsis "summary")
|
('synopsis "summary")
|
||||||
('description "summary")
|
('description "summary")
|
||||||
|
|
Loading…
Reference in a new issue