nixpkgs/pkgs/tools/networking/s3cmd/default.nix

24 lines
633 B
Nix
Raw Normal View History

2016-11-09 11:56:02 +01:00
{ stdenv, fetchFromGitHub, python2Packages }:
2016-11-09 11:56:02 +01:00
python2Packages.buildPythonApplication rec {
2019-08-31 13:41:23 +02:00
pname = "s3cmd";
version = "2.0.2";
2016-03-25 06:07:19 +01:00
src = fetchFromGitHub {
owner = "s3tools";
repo = "s3cmd";
rev = "v${version}";
sha256 = "0ninw830309cxga99gjnfghpkywf9kd6yz4wqsq85zni1dv39cdk";
};
2016-11-09 11:56:02 +01:00
propagatedBuildInputs = with python2Packages; [ python_magic dateutil ];
meta = with stdenv.lib; {
homepage = http://s3tools.org/;
description = "A command-line tool to manipulate Amazon S3 buckets";
license = licenses.gpl2;
maintainers = [ maintainers.spwhitt ];
platforms = platforms.all;
};
}