python3Packages.pywikibot: init at 9.5.0 (#333068)
[NixPkgs.git] / pkgs / by-name / ze / zeyple / package.nix
blobfd5f628676aebc1c7f8e95047ba08f2a10a3f4d2
1 { lib, python3Packages, fetchFromGitHub }:
3 python3Packages.buildPythonApplication rec {
4   pname = "zeyple";
5   version = "unstable-2021-04-10";
7   format = "other";
9   src = fetchFromGitHub {
10     owner = "infertux";
11     repo = "zeyple";
12     rev = "cc125b7b44432542b227887fd7e2701f77fd8ca2";
13     sha256 = "0r2d1drg2zvwmn3zg0qb32i9mh03r5di9q1yszx23r32rsax9mxh";
14   };
16   propagatedBuildInputs = [ python3Packages.gpgme ];
17   installPhase = ''
18     install -Dm755 $src/zeyple/zeyple.py $out/bin/zeyple
19   '';
21   meta = with lib; {
22     description = "Utility program to automatically encrypt outgoing emails with GPG";
23     homepage = "https://infertux.com/labs/zeyple/";
24     maintainers = with maintainers; [ ettom ];
25     license = licenses.agpl3Plus;
26     mainProgram = "zeyple";
27   };