nixpkgs/pkgs/by-name/s4/s4cmd/package.nix
Silvan Mosberger 4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00

43 lines
1.0 KiB
Nix

{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonApplication rec {
pname = "s4cmd";
version = "2.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0d4mx98i3qhvlmr9x898mjvf827smzx6x5ji6daiwgjdlxc60mj2";
};
propagatedBuildInputs = with python3Packages; [
boto3
pytz
];
# The upstream package tries to install some bash shell completion scripts in /etc.
# Setuptools is bugged and doesn't handle --prefix properly: https://github.com/pypa/setuptools/issues/130
patchPhase = ''
sed -i '/ data_files=/d' setup.py
sed -i 's|os.chmod("/etc.*|pass|' setup.py
'';
# Replace upstream's s4cmd wrapper script with the built-in Nix wrapper
postInstall = ''
ln -fs $out/bin/s4cmd.py $out/bin/s4cmd
'';
# Test suite requires an S3 bucket
doCheck = false;
meta = with lib; {
homepage = "https://github.com/bloomreach/s4cmd";
description = "Super S3 command line tool";
license = licenses.asl20;
maintainers = [ maintainers.bhipple ];
};
}