Merge pull request #250015 from risicle/ris-snowflake-connector-python-3.1.0

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

authored by Robert Scott and committed by GitHub a0ace46c ecaf0032

+11 -3
+11 -3
pkgs/development/python-modules/snowflake-connector-python/default.nix
··· 10 10 , idna 11 11 , keyring 12 12 , oscrypto 13 + , packaging 14 + , platformdirs 13 15 , pycryptodomex 14 16 , pyjwt 15 17 , pyopenssl ··· 17 19 , pytz 18 20 , requests 19 21 , setuptools 22 + , sortedcontainers 23 + , tomlkit 20 24 , typing-extensions 21 25 , wheel 22 26 }: 23 27 24 28 buildPythonPackage rec { 25 29 pname = "snowflake-connector-python"; 26 - version = "3.0.0"; 30 + version = "3.1.0"; 27 31 format = "pyproject"; 28 32 29 33 disabled = pythonOlder "3.7"; 30 34 31 35 src = fetchPypi { 32 36 inherit pname version; 33 - hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE="; 37 + hash = "sha256-+sUfxc72+dV5iqRg9ObePlPhoPx7kT0r2Yta6Aa8yDs="; 34 38 }; 35 39 36 40 # snowflake-connector-python requires arrow 10.0.1, which we don't have in ··· 57 61 "pyOpenSSL" 58 62 "charset-normalizer" 59 63 "cryptography" 64 + "platformdirs" 60 65 ]; 61 66 62 67 propagatedBuildInputs = [ ··· 67 72 filelock 68 73 idna 69 74 oscrypto 75 + packaging 76 + platformdirs 70 77 pycryptodomex 71 78 pyjwt 72 79 pyopenssl 73 80 pytz 74 81 requests 75 - setuptools 82 + sortedcontainers 83 + tomlkit 76 84 typing-extensions 77 85 ]; 78 86