Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at github-to-sqlite-beautifulsoup4 24 lines 635 B view raw
1{ lib, buildPythonApplication, fetchFromGitHub, python-magic, python-dateutil }: 2 3buildPythonApplication rec { 4 pname = "s3cmd"; 5 version = "2.3.0"; 6 7 src = fetchFromGitHub { 8 owner = "s3tools"; 9 repo = "s3cmd"; 10 rev = "refs/tags/v${version}"; 11 sha256 = "sha256-nb4WEH8ELaG/bIe4NtjD4p99VJoG90UQ662iWyvnr2U="; 12 }; 13 14 propagatedBuildInputs = [ python-magic python-dateutil ]; 15 16 dontUseSetuptoolsCheck = true; 17 18 meta = with lib; { 19 homepage = "https://s3tools.org/s3cmd"; 20 description = "Command line tool for managing Amazon S3 and CloudFront services"; 21 license = licenses.gpl2; 22 maintainers = [ ]; 23 }; 24}