summary refs log tree commit diff
path: root/pkgs/applications/networking/protonvpn-cli-ng/default.nix
blob: 03d1a665273e73760a2f87db8397c25da954eed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, lib, fetchFromGitHub, python3Packages, openvpn, dialog }:

python3Packages.buildPythonApplication rec {
  name = "protonvpn-cli-ng";
  version = "2.2.0";

  src = fetchFromGitHub {
    owner = "protonvpn";
    repo = "protonvpn-cli-ng";
    rev = "v${version}";
    sha256 = "11fvnnr5p3qdc4y10815jnydcjvxlxwkkq9kvaajg0yszq84rwkz";
  };

  propagatedBuildInputs = (with python3Packages; [
      requests
      docopt
      setuptools
      pythondialog
    ]) ++ [
      dialog
      openvpn
    ];

  # No tests
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Linux command-line client for ProtonVPN";
    homepage = "https://github.com/protonvpn/protonvpn-cli-ng";
    maintainers = [ maintainers.jtcoolen ];
    license = licenses.gpl3;
    platforms = platforms.unix;
  };
}