20 buildPythonPackage rec {
22 version = "1.35.30"; # N.B: if you change this, change boto3 and awscli to a matching version
26 inherit pname version;
27 hash = "sha256-q1NQ6KUOSNNx+i1RfWXCmkDEN4jLmhU4f5PqxaI98P0=";
30 pythonRelaxDeps = [ "urllib3" ];
32 build-system = [ setuptools ];
46 # Integration tests require networking
49 # Disable slow tests (only run unit tests)
53 pythonImportsCheck = [ "botocore" ];
55 optional-dependencies = {
60 description = "Low-level interface to a growing number of Amazon Web Services";
61 homepage = "https://github.com/boto/botocore";
62 changelog = "https://github.com/boto/botocore/blob/${version}/CHANGELOG.rst";
63 license = lib.licenses.asl20;
64 maintainers = with lib.maintainers; [ anthonyroussel ];