wgnlpy: init at 0.1.5 (#281134)

This commit is contained in:
Aleksana
2024-11-22 22:30:36 +08:00
committed by GitHub
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
@@ -17762,6 +17762,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 { };