diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-01-03 16:15:58 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-03 16:23:18 +0200 |
commit | 53a9970e3b5417f07b6d6dd741356223da40ba9f (patch) | |
tree | e271e6e8cbb3445273feaf373db1d94d07ef67d8 /gnu | |
parent | 9930beb86084a40f17f71709d41f03338876feb3 (diff) |
gnu: python-apsw: Use 'replace' for 'check phase.
* gnu/packages/databases.scm (python-apsw)[arguments]: Update build
phase order and replace stock 'check phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 113e640739..cd21db8deb 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2652,8 +2652,7 @@ PickleShare.") (invoke "gcc" "-fPIC" "-shared" "-o" "./testextension.sqlext" "-I." "-Isqlite3" "src/testextension.c") #t)) - (delete 'check) - (add-after 'install 'check + (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) (invoke "python" "setup.py" "test") |