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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
635 B
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchFromGitHub, python-magic, python-dateutil }:
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=";
};
propagatedBuildInputs = [ python-magic python-dateutil ];
2020-04-09 09:20:00 +00:00
dontUseSetuptoolsCheck = true;
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";
license = licenses.gpl2;
2023-05-05 12:34:05 +00:00
maintainers = [ ];
};
}