diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2018-03-04 12:03:27 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2018-03-04 12:05:14 +0200 |
commit | c553b08b4949c9bb53ffd9b83b5a6de8e459ac25 (patch) | |
tree | d439e178b2026eb246fb6c854a86ccb54517c062 | |
parent | f5c847ebd067e4b56fdeb40e64a2a44e3ae2c19d (diff) | |
download | guix-c553b08b4949c9bb53ffd9b83b5a6de8e459ac25.tar guix-c553b08b4949c9bb53ffd9b83b5a6de8e459ac25.tar.gz |
gnu: python-apsw: Use invoke.
* gnu/packages/databases.scm (python-apsw)[arguments]: Use invoke.
-rw-r--r-- | gnu/packages/databases.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 7057c466d0..269a1ffcea 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2291,25 +2291,25 @@ PickleShare.") "00ai7m2pqi26qaflhz314d8k5i3syw7xzr145fhfl0crhyh6adz2")))) (build-system python-build-system) (inputs - `(("sqlite" ,sqlite))) + `(("sqlite" ,sqlite))) (arguments `(#:phases (modify-phases %standard-phases (replace 'build (lambda _ - (zero? - (system* "python" "setup.py" "build" "--enable-all-extensions")))) + (invoke "python" "setup.py" "build" "--enable-all-extensions") + #t)) (add-after 'build 'build-test-helper (lambda _ - (zero? - (system - (string-append "gcc -fPIC -shared -o ./testextension.sqlext " - "-I. -Isqlite3 src/testextension.c") )))) + (invoke "gcc" "-fPIC" "-shared" "-o" "./testextension.sqlext" + "-I." "-Isqlite3" "src/testextension.c") + #t)) (delete 'check) (add-after 'install 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) - (zero? (system* "python" "setup.py" "test"))))))) + (invoke "python" "setup.py" "test") + #t))))) (home-page "https://github.com/rogerbinns/apsw/") (synopsis "Another Python SQLite Wrapper") (description "APSW is a Python wrapper for the SQLite |