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

25 lines
646 B
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchFromGitHub, python_magic, python-dateutil }:
2020-04-09 12:20:00 +03:00
buildPythonApplication rec {
2019-08-31 14:41:23 +03:00
pname = "s3cmd";
2021-09-27 18:49:51 +03:00
version = "2.2.0";
2020-04-09 12:20:00 +03:00
2016-03-25 08:07:19 +03:00
src = fetchFromGitHub {
2020-04-09 12:20:00 +03:00
owner = "s3tools";
repo = "s3cmd";
rev = "v${version}";
2021-09-27 18:49:51 +03:00
sha256 = "0w4abif05mp52qybh4hjg6jbbj2caljq5xdhfiha3g0s5zsq46ri";
};
propagatedBuildInputs = [ python_magic python-dateutil ];
2020-04-09 12:20:00 +03:00
dontUseSetuptoolsCheck = true;
meta = with lib; {
2020-04-09 12:20:00 +03:00
homepage = "https://s3tools.org/s3cmd";
description = "Command line tool for managing Amazon S3 and CloudFront services";
license = licenses.gpl2;
maintainers = [ maintainers.spwhitt ];
};
}