Merge remote-tracking branch 'origin/staging-next' into staging

Conflicts:
-	pkgs/development/python-modules/curio/default.nix
-	pkgs/development/python-modules/pytest-httpbin/default.nix
-	pkgs/development/python-modules/xtensor-python/default.nix
This commit is contained in:
Martin Weinelt
2024-05-22 18:08:30 +02:00
6849 changed files with 98341 additions and 98785 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; {