159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
67 lines
1.6 KiB
Nix
67 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
gobject-introspection,
|
|
setuptools,
|
|
networkmanager,
|
|
proton-vpn-api-core,
|
|
proton-vpn-killswitch,
|
|
proton-vpn-logger,
|
|
pycairo,
|
|
pygobject3,
|
|
pytestCheckHook,
|
|
iproute2,
|
|
pytest-cov-stub,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "proton-vpn-killswitch-network-manager-wireguard";
|
|
version = "0.1.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ProtonVPN";
|
|
repo = "python-proton-vpn-killswitch-network-manager-wireguard";
|
|
rev = "v${version}";
|
|
hash = "sha256-4sYD2X1U066FMjrtbTb31wvkCDWAw+eXod+pi0gGsCQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
# Solves ImportError: cannot import name NM, introspection typelib not found
|
|
gobject-introspection
|
|
];
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
# Needed here for the NM namespace
|
|
networkmanager
|
|
proton-vpn-api-core
|
|
proton-vpn-killswitch
|
|
proton-vpn-logger
|
|
pycairo
|
|
pygobject3
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace proton/vpn/killswitch/backend/linux/wireguard/killswitch_connection_handler.py \
|
|
--replace '/usr/sbin/ip' '${iproute2}/bin/ip'
|
|
'';
|
|
|
|
pythonImportsCheck = [ "proton.vpn.killswitch.backend.linux.wireguard" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
];
|
|
|
|
meta = {
|
|
description = "Implementation of the proton-vpn-killswitch interface using Network Manager with wireguard-protocol";
|
|
homepage = "https://github.com/ProtonVPN/proton-vpn-killswitch-network-manager-wireguard";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ sebtm ];
|
|
};
|
|
}
|