mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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:
parent
9c566ecbef
commit
98662eba0e
@ -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) [
|
||||
|
Loading…
Reference in New Issue
Block a user