python3Packages: format with nixfmt
This commit is contained in:
@@ -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; {
|
||||
|
||||
Reference in New Issue
Block a user