wgnlpy: init at 0.1.5
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user