gnu: python-apsw: Remove obsolete code.
* gnu/packages/databases.scm (python-apsw)[native-inputs]: Remove UNZIP. [arguments]: Remove trailing #t's.master
parent
17ffcde1fc
commit
a45c30b695
|
@ -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
|
||||||
|
|
Reference in New Issue