2017-12-30 17:11:38 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2018-11-29 08:28:12 +00:00
|
|
|
, fetchPypi
|
2017-12-30 17:11:38 +00:00
|
|
|
, botocore
|
|
|
|
, jmespath
|
|
|
|
, s3transfer
|
|
|
|
, futures
|
|
|
|
, docutils
|
|
|
|
, nose
|
|
|
|
, mock
|
|
|
|
, isPy3k
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-02-21 19:08:14 +00:00
|
|
|
pname = "boto3";
|
2021-03-04 15:40:07 +00:00
|
|
|
version = "1.17.20"; # N.B: if you change this, change botocore and awscli to a matching version
|
2017-12-30 17:11:38 +00:00
|
|
|
|
2018-11-29 08:28:12 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-04 15:40:07 +00:00
|
|
|
sha256 = "sha256-Ihnx6+iNJmr6VRb5k5g+uodCuVf6T9aFTzxzqjAw6TE=";
|
2017-12-30 17:11:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
|
|
|
|
checkInputs = [ docutils nose mock ];
|
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Network access
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/boto/boto3";
|
2017-12-30 17:11:38 +00:00
|
|
|
license = lib.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.
|
|
|
|
'';
|
|
|
|
};
|
2018-11-29 08:28:12 +00:00
|
|
|
}
|