828547556e
boto3: 1.9.36 -> 1.9.62 awscli: 1.16.72 I update all three of these at a time because they rely on each other and get annoyed when such changes are non-atomic. Also added a note to the packages telling people that this is needed. I tested awscli and the libraries against a real account.
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, botocore
|
|
, jmespath
|
|
, s3transfer
|
|
, futures
|
|
, docutils
|
|
, nose
|
|
, mock
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "boto3";
|
|
version = "1.9.62"; # N.B: if you change this, change botocore too
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0rf3ik4bqr0qab2648rcaahycr2sih257ngz8brizyfln0lk1sg9";
|
|
};
|
|
|
|
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 = {
|
|
homepage = https://github.com/boto/boto3;
|
|
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.
|
|
'';
|
|
};
|
|
}
|