python312Packages.snowflake-connector-python: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 10:28:00 +02:00
parent 4d9010c2a5
commit 581f195dfa
1 changed files with 35 additions and 33 deletions

View File

@ -1,31 +1,32 @@
{ lib
, asn1crypto
, buildPythonPackage
, certifi
, cffi
, charset-normalizer
, cython
, fetchPypi
, filelock
, idna
, keyring
, oscrypto
, packaging
, pandas
, platformdirs
, pyarrow
, pycryptodomex
, pyjwt
, pyopenssl
, pythonOlder
, pythonRelaxDepsHook
, pytz
, requests
, setuptools
, sortedcontainers
, tomlkit
, typing-extensions
, wheel
{
lib,
asn1crypto,
buildPythonPackage,
certifi,
cffi,
charset-normalizer,
cython,
fetchPypi,
filelock,
idna,
keyring,
oscrypto,
packaging,
pandas,
platformdirs,
pyarrow,
pycryptodomex,
pyjwt,
pyopenssl,
pythonOlder,
pythonRelaxDepsHook,
pytz,
requests,
setuptools,
sortedcontainers,
tomlkit,
typing-extensions,
wheel,
}:
buildPythonPackage rec {
@ -46,9 +47,7 @@ buildPythonPackage rec {
wheel
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
asn1crypto
@ -71,7 +70,10 @@ buildPythonPackage rec {
];
passthru.optional-dependencies = {
pandas = [ pandas pyarrow ];
pandas = [
pandas
pyarrow
];
secure-local-storage = [ keyring ];
};
@ -91,4 +93,4 @@ buildPythonPackage rec {
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}
}