python310Packages.botocore: 1.27.75 -> 1.29.38

This commit is contained in:
Anthony Roussel
2022-12-28 17:58:33 +01:00
parent 781c993a8a
commit 9a0aed0dc1
2 changed files with 22 additions and 14 deletions
@@ -4,43 +4,51 @@
, python-dateutil
, jmespath
, docutils
, simplejson
, mock
, nose
, urllib3
, pytestCheckHook
, jsonschema
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.27.75"; # N.B: if you change this, change boto3 and awscli to a matching version
version = "1.29.38"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-+LHaK0HojFjbUdsMbv9spWQliUjOSlrH6WrDWkabDU8=";
hash = "sha256-K5jH2oZozcAitNila1BoZFTQoQwRUYcC/eQYgdIGGLY=";
};
propagatedBuildInputs = [
python-dateutil
jmespath
docutils
simplejson
urllib3
];
checkInputs = [ mock nose ];
checkInputs = [
pytestCheckHook
jsonschema
];
checkPhase = ''
nosetests -v
'';
doCheck = true;
# Network access
doCheck = false;
disabledTestPaths = [
# Integration tests require networking
"tests/integration"
pythonImportsCheck = [ "botocore" ];
# Disable slow tests (only run unit tests)
"tests/functional"
];
pythonImportsCheck = [
"botocore"
];
meta = with lib; {
homepage = "https://github.com/boto/botocore";
changelog = "https://github.com/boto/botocore/blob/${version}/CHANGELOG.rst";
license = licenses.asl20;
description = "A low-level interface to a growing number of Amazon Web Services";
maintainers = with maintainers; [ anthonyroussel ];
};
}