2022-05-06 23:18:35 +00:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub, python-magic, python-dateutil }:
|
2011-08-13 11:49:23 +00:00
|
|
|
|
2020-04-09 09:20:00 +00:00
|
|
|
buildPythonApplication rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "s3cmd";
|
2022-10-03 21:48:17 +00:00
|
|
|
version = "2.3.0";
|
2020-04-09 09:20:00 +00:00
|
|
|
|
2016-03-25 05:07:19 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-04-09 09:20:00 +00:00
|
|
|
owner = "s3tools";
|
|
|
|
repo = "s3cmd";
|
2022-10-03 21:48:17 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "sha256-nb4WEH8ELaG/bIe4NtjD4p99VJoG90UQ662iWyvnr2U=";
|
2011-08-13 11:49:23 +00:00
|
|
|
};
|
|
|
|
|
2022-05-06 23:18:35 +00:00
|
|
|
propagatedBuildInputs = [ python-magic python-dateutil ];
|
2020-04-09 09:20:00 +00:00
|
|
|
|
|
|
|
dontUseSetuptoolsCheck = true;
|
2011-08-13 11:49:23 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-09 09:20:00 +00:00
|
|
|
homepage = "https://s3tools.org/s3cmd";
|
|
|
|
description = "Command line tool for managing Amazon S3 and CloudFront services";
|
2015-04-02 16:56:06 +00:00
|
|
|
license = licenses.gpl2;
|
2023-05-05 12:34:05 +00:00
|
|
|
maintainers = [ ];
|
2011-08-13 11:49:23 +00:00
|
|
|
};
|
|
|
|
}
|