at 15.09-beta 20 lines 579 B view raw
1{ stdenv, fetchurl, pythonPackages }: 2 3pythonPackages.buildPythonPackage rec { 4 name = "s3cmd-1.5.2"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/s3tools/${name}.tar.gz"; 8 sha256 = "0bdl2wvh4nri4n6hpaa8s9lk98xy4a1b0l9ym54fvmxxx1j6g2pz"; 9 }; 10 11 propagatedBuildInputs = with pythonPackages; [ python_magic dateutil ]; 12 13 meta = with stdenv.lib; { 14 homepage = http://s3tools.org/; 15 description = "A command-line tool to manipulate Amazon S3 buckets"; 16 license = licenses.gpl2; 17 maintainers = [ maintainers.spwhitt ]; 18 platforms = platforms.all; 19 }; 20}