19 buildPythonPackage rec {
21 inherit (botocore) version; # N.B: botocore, boto3, awscli needs to be updated in lockstep, bump botocore version for updating these.
24 src = fetchFromGitHub {
27 rev = "refs/tags/${version}";
28 hash = "sha256-b08tC8EA6iW0O/7rseD9pTkKh/cJ2fe3xJZkEqxS6VI=";
31 build-system = [ setuptools ];
33 pythonRelaxDeps = [ "s3transfer" ];
46 pythonImportsCheck = [ "boto3" ];
49 # Integration tests require networking
53 optional-dependencies = {
54 crt = [ botocore.optional-dependencies.crt ];
58 description = "AWS SDK for Python";
59 homepage = "https://github.com/boto/boto3";
60 changelog = "https://github.com/boto/boto3/blob/${version}/CHANGELOG.rst";
61 license = lib.licenses.asl20;
63 Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
64 Python, which allows Python developers to write software that makes use of
65 services like Amazon S3 and Amazon EC2.
67 maintainers = with lib.maintainers; [ anthonyroussel ];