python: enable loadable sqlite extensions (#67472)

Our sqlite supports it, so might as well make use of it.

Fixes #66526
This commit is contained in:
Matthew Bauer 2019-08-31 07:59:00 -04:00 committed by Samuel Leathers
parent 9c566ecbef
commit 98662eba0e

View File

@ -142,6 +142,8 @@ in with passthru; stdenv.mkDerivation {
"--without-ensurepip"
"--with-system-expat"
"--with-system-ffi"
] ++ optionals (sqlite != null && isPy3k) [
"--enable-loadable-sqlite-extensions"
] ++ optionals (openssl != null) [
"--with-openssl=${openssl.dev}"
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [