2011-08-13 13:49:23 +02:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2015-04-02 18:56:06 +02:00
|
|
|
name = "s3cmd-1.5.2";
|
2011-08-13 13:49:23 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/s3tools/${name}.tar.gz";
|
2015-04-02 18:56:06 +02:00
|
|
|
sha256 = "0bdl2wvh4nri4n6hpaa8s9lk98xy4a1b0l9ym54fvmxxx1j6g2pz";
|
2011-08-13 13:49:23 +02:00
|
|
|
};
|
|
|
|
|
2015-04-02 18:56:06 +02:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ python_magic dateutil ];
|
2011-08-13 13:49:23 +02:00
|
|
|
|
2015-04-02 18:56:06 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-08-13 13:49:23 +02:00
|
|
|
homepage = http://s3tools.org/;
|
|
|
|
description = "A command-line tool to manipulate Amazon S3 buckets";
|
2015-04-02 18:56:06 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
platforms = platforms.all;
|
2011-08-13 13:49:23 +02:00
|
|
|
};
|
|
|
|
}
|