{ buildPythonPackage , isPy27 , asn1crypto , azure-storage-blob , boto3 , certifi , cffi , fetchPypi , future , idna , ijson , isPy3k , lib , oscrypto , pyarrow , pyasn1-modules , pycryptodomex , pyjwt , pyopenssl , pytz , requests , six , urllib3 }: buildPythonPackage rec { pname = "snowflake-connector-python"; version = "2.2.5"; disabled = isPy27; src = fetchPypi { inherit pname version; sha256 = "2f720c4989b2ad92c1fc3c221f049102155f2d8006527daa15f2b54ecfdaf652"; }; propagatedBuildInputs = [ azure-storage-blob asn1crypto boto3 certifi cffi future idna ijson oscrypto pycryptodomex pyjwt pyopenssl pytz requests six ] ++ lib.optionals (!isPy3k) [ pyarrow pyasn1-modules urllib3 ]; postPatch = '' substituteInPlace setup.py \ --replace "'cffi>=1.9,<1.14'," "'cffi~=1.9'," ''; # tests are not working # XXX: fix the tests doCheck = false; meta = with lib; { description = "Snowflake Connector for Python"; homepage = "https://www.snowflake.com/"; license = licenses.asl20; }; }