s3bro: init at 2.8

This commit is contained in:
PsyanticY 2019-12-23 17:18:23 +01:00
parent 7f2e8f6367
commit c82658ac4a
2 changed files with 25 additions and 0 deletions

@ -0,0 +1,23 @@
{ stdenv, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "s3bro";
version = "2.8";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0k25g3vch0q772f29jlghda5mjvps55h5lgwhwwbd5g2nlnrrspq";
};
propagatedBuildInputs = with python3Packages; [ boto3 botocore click termcolor ];
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "A handy s3 cli tool";
homepage = https://github.com/rsavordelli/s3bro;
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}

@ -6122,6 +6122,8 @@ in
s3backer = callPackage ../tools/filesystems/s3backer { };
s3bro = callPackage ../tools/admin/s3bro { };
s3fs = callPackage ../tools/filesystems/s3fs { };
s3cmd = callPackage ../tools/networking/s3cmd { };