mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
52 lines
860 B
Nix
52 lines
860 B
Nix
{ stdenv
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, buildPythonPackage
|
|
, docutils
|
|
, mock
|
|
, nose
|
|
, coverage
|
|
, wheel
|
|
, unittest2
|
|
, botocore
|
|
, futures
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "s3transfer";
|
|
version = "0.3.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "921a37e2aefc64145e7b73d50c71bb4f26f46e4c9f414dc648c6245ff92cf7db";
|
|
};
|
|
|
|
propagatedBuildInputs =
|
|
[ botocore
|
|
] ++ stdenv.lib.optional (pythonOlder "3") futures;
|
|
|
|
buildInputs = [
|
|
docutils
|
|
mock
|
|
nose
|
|
coverage
|
|
wheel
|
|
unittest2
|
|
];
|
|
|
|
checkPhase = ''
|
|
pushd s3transfer/tests
|
|
nosetests -v unit/ functional/
|
|
popd
|
|
'';
|
|
|
|
# version on pypi has no tests/ dir
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = https://github.com/boto/s3transfer;
|
|
license = stdenv.lib.licenses.asl20;
|
|
description = "A library for managing Amazon S3 transfers";
|
|
};
|
|
}
|