me
/
guix
Archived
1
0
Fork 0

gnu: python-apsw: Fix tests.

* gnu/packages/python.scm (python-apsw, python2-apsw)[arguments]: Use
  'modify-phases'. Add installed PYTHONPATH before running tests.
master
Marius Bakke 2016-12-16 02:45:49 +01:00
parent 80ce42bdbf
commit 154d207c43
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 7 deletions

View File

@ -5155,13 +5155,12 @@ implementation of D-Bus.")
`(("sqlite" ,sqlite))) `(("sqlite" ,sqlite)))
(arguments (arguments
`(#:phases `(#:phases
;; swap check and install phases (modify-phases %standard-phases
(alist-cons-after (delete 'check)
'install 'check (add-after 'install 'check
(assoc-ref %standard-phases 'check) (lambda* (#:key inputs outputs #:allow-other-keys)
(alist-delete (add-installed-pythonpath inputs outputs)
'check (zero? (system* "python" "setup.py" "test")))))))
%standard-phases))))
(home-page "https://github.com/rogerbinns/apsw/") (home-page "https://github.com/rogerbinns/apsw/")
(synopsis "Another Python SQLite Wrapper") (synopsis "Another Python SQLite Wrapper")
(description "APSW is a Python wrapper for the SQLite (description "APSW is a Python wrapper for the SQLite