python3Packages.snowflake-connector-python: 3.0.0 -> 3.0.2

still appears to need setuptools present despite switching
to `packaging`
This commit is contained in:
Robert Scott 2023-08-18 20:06:58 +01:00
parent 33cd48c86b
commit fd4c28c894

View file

@ -10,6 +10,7 @@
, idna
, keyring
, oscrypto
, packaging
, pycryptodomex
, pyjwt
, pyopenssl
@ -23,14 +24,14 @@
buildPythonPackage rec {
pname = "snowflake-connector-python";
version = "3.0.0";
version = "3.0.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE=";
hash = "sha256-wMLn7PMcnmaRzn/VbcLVw60dOzJAWTpkEw5HFrCncLY=";
};
# snowflake-connector-python requires arrow 10.0.1, which we don't have in
@ -67,12 +68,12 @@ buildPythonPackage rec {
filelock
idna
oscrypto
packaging
pycryptodomex
pyjwt
pyopenssl
pytz
requests
setuptools
typing-extensions
];