python310Packages.snowflake-connector-python: add secure-local-storage extra

This commit is contained in:
Theodore Ni 2023-07-13 22:57:29 -07:00
parent 354ecddc47
commit c0310c08d7
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -7,6 +7,7 @@
, fetchPypi
, filelock
, idna
, keyring
, oscrypto
, pycryptodomex
, pyjwt
@ -53,6 +54,10 @@ buildPythonPackage rec {
typing-extensions
];
passthru.optional-dependencies = {
secure-local-storage = [ keyring ];
};
# Tests require encrypted secrets, see
# https://github.com/snowflakedb/snowflake-connector-python/tree/master/.github/workflows/parameters
doCheck = false;