about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/admin/s3bro/default.nix
blob: 35cf7b11e6459f33541c5c92a6e2d288b47d2afe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, 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 lib; {
    description = "A handy s3 cli tool";
    homepage = "https://github.com/rsavordelli/s3bro";
    license = licenses.mit;
    maintainers = with maintainers; [ psyanticy ];
  };
}