Archived
1
0
Fork 0

gnu: python-apsw: Use invoke.

* gnu/packages/databases.scm (python-apsw)[arguments]: Use invoke.
This commit is contained in:
Efraim Flashner 2018-03-04 12:03:27 +02:00
parent f5c847ebd0
commit c553b08b49
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2297,19 +2297,19 @@ PickleShare.")
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'build (replace 'build
(lambda _ (lambda _
(zero? (invoke "python" "setup.py" "build" "--enable-all-extensions")
(system* "python" "setup.py" "build" "--enable-all-extensions")))) #t))
(add-after 'build 'build-test-helper (add-after 'build 'build-test-helper
(lambda _ (lambda _
(zero? (invoke "gcc" "-fPIC" "-shared" "-o" "./testextension.sqlext"
(system "-I." "-Isqlite3" "src/testextension.c")
(string-append "gcc -fPIC -shared -o ./testextension.sqlext " #t))
"-I. -Isqlite3 src/testextension.c") ))))
(delete 'check) (delete 'check)
(add-after 'install 'check (add-after 'install 'check
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)
(add-installed-pythonpath inputs outputs) (add-installed-pythonpath inputs outputs)
(zero? (system* "python" "setup.py" "test"))))))) (invoke "python" "setup.py" "test")
#t)))))
(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