python311Packages.awswrangler: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-23 08:40:01 +02:00
parent facce1b815
commit 31748b91a2

View File

@ -1,27 +1,28 @@
{ backoff {
, sparqlwrapper backoff,
, boto3 sparqlwrapper,
, buildPythonPackage boto3,
, fetchFromGitHub buildPythonPackage,
, gremlinpython fetchFromGitHub,
, jsonpath-ng gremlinpython,
, lib jsonpath-ng,
, moto lib,
, openpyxl moto,
, opensearch-py openpyxl,
, pandas opensearch-py,
, pg8000 pandas,
, poetry-core pg8000,
, progressbar2 poetry-core,
, pyarrow progressbar2,
, pymysql pyarrow,
, pyodbc pymysql,
, pyparsing pyodbc,
, pytestCheckHook pyparsing,
, pythonOlder pytestCheckHook,
, pythonRelaxDepsHook pythonOlder,
, redshift-connector pythonRelaxDepsHook,
, requests-aws4auth redshift-connector,
requests-aws4auth,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -43,9 +44,7 @@ buildPythonPackage rec {
pythonRelaxDepsHook pythonRelaxDepsHook
]; ];
pythonRelaxDeps = [ pythonRelaxDeps = [ "packaging" ];
"packaging"
];
dependencies = [ dependencies = [
boto3 boto3
@ -78,12 +77,8 @@ buildPythonPackage rec {
]; ];
passthru.optional-dependencies = { passthru.optional-dependencies = {
sqlserver = [ sqlserver = [ pyodbc ];
pyodbc sparql = [ sparqlwrapper ];
];
sparql = [
sparqlwrapper
];
}; };
meta = with lib; { meta = with lib; {