Files
nixpkgs/pkgs/development/python-modules/botocore/default.nix
T
Martin Weinelt 5e775fba6d python3Packages.botocore: 1.40.18 -> 1.42.31
https://github.com/boto/botocore/blob/1.42.31/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:22 +01:00

69 lines
1.3 KiB
Nix

{
lib,
awscrt,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
jmespath,
python-dateutil,
urllib3,
# tests
jsonschema,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.42.31"; # N.B: if you change this, change boto3 and awscli to a matching version
pyproject = true;
src = fetchFromGitHub {
owner = "boto";
repo = "botocore";
tag = version;
hash = "sha256-avuv1uXKMeSr3SL+BI9XW8tDCQM/dlXFn590di3S03k=";
};
build-system = [
setuptools
];
dependencies = [
jmespath
python-dateutil
urllib3
];
nativeCheckInputs = [
jsonschema
pytestCheckHook
];
disabledTestPaths = [
# Integration tests require networking
"tests/integration"
# Disable slow tests (only run unit tests)
"tests/functional"
];
pythonImportsCheck = [ "botocore" ];
optional-dependencies = {
crt = [ awscrt ];
};
meta = {
description = "Low-level interface to a growing number of Amazon Web Services";
homepage = "https://github.com/boto/botocore";
changelog = "https://github.com/boto/botocore/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ anthonyroussel ];
};
}