5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, setuptools
|
|
, cryptography
|
|
, distro
|
|
, proton-core
|
|
, proton-vpn-logger
|
|
, pynacl
|
|
, aiohttp
|
|
, pyopenssl
|
|
, pytest-asyncio
|
|
, requests
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "proton-vpn-session";
|
|
version = "0.6.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ProtonVPN";
|
|
repo = "python-proton-vpn-session";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/5ju/2bxhqK6JWchkxFe3amBKHtO98GCVQWIrUsn+nQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
distro
|
|
proton-core
|
|
proton-vpn-logger
|
|
pynacl
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace-fail "--cov=proton.vpn.session --cov-report term" ""
|
|
'';
|
|
|
|
pythonImportsCheck = [ "proton.vpn.session" ];
|
|
|
|
postInstall = ''
|
|
# Needed for Permission denied: '/homeless-shelter'
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
aiohttp
|
|
pyopenssl
|
|
pytest-asyncio
|
|
requests
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = {
|
|
description = "Provides utility classes to manage VPN sessions";
|
|
homepage = "https://github.com/ProtonVPN/python-proton-vpn-session";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ wolfangaukang ];
|
|
};
|
|
}
|