686ce24904
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{ lib
|
|
, asn1crypto
|
|
, buildPythonPackage
|
|
, certifi
|
|
, cffi
|
|
, charset-normalizer
|
|
, fetchPypi
|
|
, filelock
|
|
, idna
|
|
, oscrypto
|
|
, pycryptodomex
|
|
, pyjwt
|
|
, pyopenssl
|
|
, pythonOlder
|
|
, pytz
|
|
, requests
|
|
, setuptools
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "snowflake-connector-python";
|
|
version = "3.0.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-F0EbgRSS/kYKUDPhf6euM0eLqIqVjQsHC6C9ZZSRCIE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "charset_normalizer>=2,<3" "charset_normalizer" \
|
|
--replace "pyOpenSSL>=16.2.0,<23.0.0" "pyOpenSSL"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
asn1crypto
|
|
certifi
|
|
cffi
|
|
charset-normalizer
|
|
filelock
|
|
idna
|
|
oscrypto
|
|
pycryptodomex
|
|
pyjwt
|
|
pyopenssl
|
|
pytz
|
|
requests
|
|
setuptools
|
|
typing-extensions
|
|
];
|
|
|
|
# Tests require encrypted secrets, see
|
|
# https://github.com/snowflakedb/snowflake-connector-python/tree/master/.github/workflows/parameters
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"snowflake"
|
|
"snowflake.connector"
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/snowflakedb/snowflake-connector-python/blob/v${version}/DESCRIPTION.md";
|
|
description = "Snowflake Connector for Python";
|
|
homepage = "https://github.com/snowflakedb/snowflake-connector-python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|