apteryx pushed a commit to branch cu/farewell-to-pythonpath in repository guix.
commit 31370eb942babc7d6adbcb121f34cffbc0c02570 Author: Lars-Dominik Braun <[email protected]> AuthorDate: Thu Jan 7 13:29:59 2021 +0100 gnu: python-fixtures-bootstrap: Do not sanity check. * gnu/packages/check.scm (python-fixtures-bootstrap) [phases]{sanity-check}: Delete. --- gnu/packages/check.scm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 1749531..defa594 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1495,7 +1495,12 @@ protocol."))) (base32 "1vxj29bzz3rd4pcy51d05wng9q9dh4jq6wx92yklsm7i6h1ddw7w")))) (build-system python-build-system) - (arguments `(#:tests? #f)) + (arguments + `(#:tests? #f + #:phases + (modify-phases %standard-phases + ;; Package is not loadable on its own at this stage. + (delete 'sanity-check)))) (propagated-inputs `(("python-pbr-minimal" ,python-pbr-minimal) ("python-six" ,python-six)))
