me
/
guix
Archived
1
0
Fork 0

gnu: python-apsw: Remove obsolete code.

* gnu/packages/databases.scm (python-apsw)[native-inputs]: Remove UNZIP.
[arguments]: Remove trailing #t's.
master
Marius Bakke 2022-08-26 23:44:58 +02:00
parent 17ffcde1fc
commit a45c30b695
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 2 additions and 3 deletions

View File

@ -3580,7 +3580,6 @@ PickleShare.")
(base32 (base32
"0q7fnk8n3m5mpjzh6xyhj409k8sacdbjsfis98my9c50fdn5sr7y")))) "0q7fnk8n3m5mpjzh6xyhj409k8sacdbjsfis98my9c50fdn5sr7y"))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs (list unzip))
(inputs (list sqlite-next)) ;SQLite 3.39 required. (inputs (list sqlite-next)) ;SQLite 3.39 required.
(arguments (arguments
(list #:phases (list #:phases
@ -3588,11 +3587,11 @@ PickleShare.")
(replace 'build (replace 'build
(lambda _ (lambda _
(invoke "python" "setup.py" "build" "--enable-all-extensions" (invoke "python" "setup.py" "build" "--enable-all-extensions"
"--enable=load_extension") #t)) "--enable=load_extension")))
(add-after 'build 'build-test-helper (add-after 'build 'build-test-helper
(lambda _ (lambda _
(invoke "gcc" "-fPIC" "-shared" "-o" "./testextension.sqlext" (invoke "gcc" "-fPIC" "-shared" "-o" "./testextension.sqlext"
"-I." "-Isqlite3" "src/testextension.c") #t))))) "-I." "-Isqlite3" "src/testextension.c"))))))
(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 (description