python310Packages.boto3: 1.24.75 -> 1.26.38

This commit is contained in:
Anthony Roussel 2022-12-09 23:38:51 +01:00
parent d41eafcfb0
commit 781c993a8a
No known key found for this signature in database
GPG key ID: 9DC4987B1A55E75E

View file

@ -1,50 +1,57 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, botocore
, jmespath
, s3transfer
, futures ? null
, docutils
, nose
, mock
, isPy3k
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "boto3";
version = "1.24.75"; # N.B: if you change this, change botocore and awscli to a matching version
version = "1.26.38"; # N.B: if you change this, change botocore and awscli to a matching version
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-e/oiQt+bH6c+F/TX959rIlYPVdXaLifleOWF725LFKc=";
src = fetchFromGitHub {
owner = "boto";
repo = pname;
rev = version;
hash = "sha256-/QkR6gL0XkXofnFDcKa7J0ZbZbgT0IKnqtq2wcilbEs=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
checkInputs = [ docutils nose mock ];
propagatedBuildInputs = [
botocore
jmespath
s3transfer
setuptools
];
checkPhase = ''
runHook preCheck
# This method is not in mock. It might have appeared in some versions.
sed -i 's/action.assert_called_once()/self.assertEqual(action.call_count, 1)/' \
tests/unit/resources/test_factory.py
nosetests -d tests/unit --verbose
runHook postCheck
'';
doCheck = true;
# Network access
doCheck = false;
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "boto3" ];
pythonImportsCheck = [
"boto3"
];
meta = {
disabledTestPaths = [
# Integration tests require networking
"tests/integration"
];
meta = with lib; {
homepage = "https://github.com/boto/boto3";
license = lib.licenses.asl20;
changelog = "https://github.com/boto/boto3/blob/${version}/CHANGELOG.rst";
license = licenses.asl20;
description = "AWS SDK for Python";
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 ];
};
}