mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
abdf5dc772
It is is now provided automatically, when `pythonRelaxDeps` or `pythonRemoveDeps` is defined through `mk-python-derivation`.
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
botocore,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
jmespath,
|
|
pytest-xdist,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
s3transfer,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "boto3";
|
|
inherit (botocore) version; # N.B: botocore, boto3, awscli needs to be updated in lockstep, bump botocore version for updating these.
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boto";
|
|
repo = "boto3";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-1qnWJjYsDc70VkHYbKt0X26f0f4TugqMiS1FeaPjhq4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
pythonRelaxDeps = [ "s3transfer" ];
|
|
|
|
propagatedBuildInputs = [
|
|
botocore
|
|
jmespath
|
|
s3transfer
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "boto3" ];
|
|
|
|
disabledTestPaths = [
|
|
# Integration tests require networking
|
|
"tests/integration"
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
crt = [ botocore.optional-dependencies.crt ];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "AWS SDK for Python";
|
|
homepage = "https://github.com/boto/boto3";
|
|
changelog = "https://github.com/boto/boto3/blob/${version}/CHANGELOG.rst";
|
|
license = licenses.asl20;
|
|
longDescription = ''
|
|
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
|
|
Python, which allows Python developers to write software that makes use of
|
|
services like Amazon S3 and Amazon EC2.
|
|
'';
|
|
maintainers = with maintainers; [ anthonyroussel ];
|
|
};
|
|
}
|