python3Packages.snowflake-connector-python: 3.15.0 -> 3.16.0

https://github.com/snowflakedb/snowflake-connector-python/blob/v3.16.0/DESCRIPTION.md

This commit was automatically generated using update-python-libraries.

Changed files
+5 -3
pkgs
development
python-modules
snowflake-connector-python
+5 -3
pkgs/development/python-modules/snowflake-connector-python/default.nix
···
filelock,
idna,
keyring,
+
numpy,
packaging,
pandas,
platformdirs,
···
buildPythonPackage rec {
pname = "snowflake-connector-python";
-
version = "3.15.0";
+
version = "3.16.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "snowflakedb";
repo = "snowflake-connector-python";
tag = "v${version}";
-
hash = "sha256-Dz5jxmbBfWThmd7H0MIO5+DfnjpDw9ADHg5Sc7P+DYs=";
+
hash = "sha256-mow8TxmkeaMkgPTLUpx5Gucn4347gohHPyiBYjI/cDs=";
};
build-system = [
···
'';
nativeCheckInputs = [
+
numpy
pytest-xdist
pytestCheckHook
];
···
meta = with lib; {
description = "Snowflake Connector for Python";
homepage = "https://github.com/snowflakedb/snowflake-connector-python";
-
changelog = "https://github.com/snowflakedb/snowflake-connector-python/blob/v${version}/DESCRIPTION.md";
+
changelog = "https://github.com/snowflakedb/snowflake-connector-python/blob/${src.tag}/DESCRIPTION.md";
license = licenses.asl20;
maintainers = [ ];
};