Merge pull request #173077 from austinbutler/gyb

gyb: init at 1.62
This commit is contained in:
Jonas Heinrich 2022-09-05 09:20:51 +02:00 committed by GitHub
commit 2e0e743b93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ lib
, fetchFromGitHub
, python3
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "gyb";
version = "1.62";
format = "other";
src = fetchFromGitHub {
owner = "GAM-team";
repo = "got-your-back";
rev = "v${version}";
sha256 = "sha256-HaexQ0y5i9Q0xgjzAX6E2xeyeDvARo7/Gx3ytohRT7U=";
};
propagatedBuildInputs = with python3Packages; [
google-api-python-client
google-auth
google-auth-oauthlib
google-auth-httplib2
httplib2
];
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,${python3.sitePackages}}
mv gyb.py "$out/bin/gyb"
mv *.py "$out/${python3.sitePackages}/"
runHook postInstall
'';
checkPhase = ''
$out/bin/gyb --help > /dev/null
'';
meta = with lib; {
description = ''
Got Your Back (GYB) is a command line tool for backing up your Gmail
messages to your computer using Gmail's API over HTTPS.
'';
homepage = "https://github.com/GAM-team/got-your-back";
license = licenses.asl20;
maintainers = with maintainers; [ austinbutler ];
};
}

View File

@ -7119,6 +7119,8 @@ with pkgs;
grin = callPackage ../tools/text/grin { };
gyb = callPackage ../tools/backup/gyb { };
igrep = callPackage ../tools/text/igrep {
inherit (darwin.apple_sdk.frameworks) Security;
};