6 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
13 repo = "got-your-back";
14 rev = "refs/tags/v${version}";
15 hash = "sha256-eKeT2tVBK2DcTOEC6Tvo+igPXPOD1wy66+kr0ltnMIU=";
18 dependencies = with python3.pkgs; [
19 google-api-python-client
29 mkdir -p $out/{bin,${python3.sitePackages}}
30 mv gyb.py $out/bin/gyb
31 mv *.py $out/${python3.sitePackages}/
39 PYTHONPATH="" $out/bin/gyb --help > /dev/null
46 Got Your Back (GYB) is a command line tool for backing up your Gmail
47 messages to your computer using Gmail's API over HTTPS.
49 homepage = "https://github.com/GAM-team/got-your-back";
50 license = licenses.asl20;
52 maintainers = with maintainers; [ austinbutler ];