wgnlpy: init at 0.1.5

This commit is contained in:
Marcel
2024-11-10 14:16:14 +01:00
parent 8213a8a557
commit 5588cd1dfe
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
cryptography,
pyroute2,
}:
buildPythonPackage rec {
pname = "wgnlpy";
version = "0.1.5";
pyproject = true;
src = fetchFromGitHub {
owner = "ArgosyLabs";
repo = "wgnlpy";
rev = "v${version}";
hash = "sha256-5XAfBiKx4SqouA57PxmaCb0ea7mT2VeUI1tgnQE/ZwQ=";
};
build-system = [ setuptools ];
dependencies = [
cryptography
pyroute2
];
pythonImportsCheck = [
"wgnlpy"
"wgnlpy.nlas"
];
meta = {
description = "Netlink connector to WireGuard";
homepage = "https://github.com/ArgosyLabs/wgnlpy";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ marcel ];
};
}
+2
View File
@@ -17678,6 +17678,8 @@ self: super: with self; {
wget = callPackage ../development/python-modules/wget { };
wgnlpy = callPackage ../development/python-modules/wgnlpy { };
whatthepatch = callPackage ../development/python-modules/whatthepatch { };
wheel = callPackage ../development/python-modules/wheel { };