Merge pull request #250015 from risicle/ris-snowflake-connector-python-3.1.0
python3Packages.snowflake-connector-python: 3.0.0 -> 3.1.0
This commit is contained in:
commit
a0ace46c12
1 changed files with 11 additions and 3 deletions
|
@ -10,6 +10,8 @@
|
|||
, idna
|
||||
, keyring
|
||||
, oscrypto
|
||||
, packaging
|
||||
, platformdirs
|
||||
, pycryptodomex
|
||||
, pyjwt
|
||||
, pyopenssl
|
||||
|
@ -17,20 +19,22 @@
|
|||
, pytz
|
||||
, requests
|
||||
, setuptools
|
||||
, sortedcontainers
|
||||
, tomlkit
|
||||
, typing-extensions
|
||||
, wheel
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "snowflake-connector-python";
|
||||
version = "3.0.0";
|
||||
version = "3.1.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE=";
|
||||
hash = "sha256-+sUfxc72+dV5iqRg9ObePlPhoPx7kT0r2Yta6Aa8yDs=";
|
||||
};
|
||||
|
||||
# snowflake-connector-python requires arrow 10.0.1, which we don't have in
|
||||
|
@ -57,6 +61,7 @@ buildPythonPackage rec {
|
|||
"pyOpenSSL"
|
||||
"charset-normalizer"
|
||||
"cryptography"
|
||||
"platformdirs"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -67,12 +72,15 @@ buildPythonPackage rec {
|
|||
filelock
|
||||
idna
|
||||
oscrypto
|
||||
packaging
|
||||
platformdirs
|
||||
pycryptodomex
|
||||
pyjwt
|
||||
pyopenssl
|
||||
pytz
|
||||
requests
|
||||
setuptools
|
||||
sortedcontainers
|
||||
tomlkit
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue