Merge pull request #76279 from PsyanticY/s3bro

s3bro: init at 2.8
This commit is contained in:
Frederik Rietdijk 2020-02-18 18:37:24 +01:00 committed by GitHub
commit 9fede4c38e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -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 ];
};
}

View file

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