python3Packages: format with nixfmt

This commit is contained in:
Martin Weinelt
2024-05-22 17:32:03 +02:00
parent 691216eca3
commit 59b1aef590
6796 changed files with 97594 additions and 98381 deletions
@@ -1,14 +1,15 @@
{ lib
, botocore
, buildPythonPackage
, fetchFromGitHub
, jmespath
, pytest-xdist
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, s3transfer
, setuptools
{
lib,
botocore,
buildPythonPackage,
fetchFromGitHub,
jmespath,
pytest-xdist,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
s3transfer,
setuptools,
}:
buildPythonPackage rec {
@@ -30,9 +31,7 @@ buildPythonPackage rec {
setuptools
];
pythonRelaxDeps = [
"s3transfer"
];
pythonRelaxDeps = [ "s3transfer" ];
propagatedBuildInputs = [
botocore
@@ -45,9 +44,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"boto3"
];
pythonImportsCheck = [ "boto3" ];
disabledTestPaths = [
# Integration tests require networking
@@ -55,9 +52,7 @@ buildPythonPackage rec {
];
passthru.optional-dependencies = {
crt = [
botocore.optional-dependencies.crt
];
crt = [ botocore.optional-dependencies.crt ];
};
meta = with lib; {