mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 18:16:13 +01:00
27 lines
484 B
Nix
27 lines
484 B
Nix
|
{
|
||
|
fetchFromGitHub,
|
||
|
buildPythonPackage,
|
||
|
pyroute2,
|
||
|
cryptography,
|
||
|
}: let
|
||
|
version = "0.1.5";
|
||
|
in
|
||
|
buildPythonPackage {
|
||
|
pname = "wgnpy";
|
||
|
version = "v" + version;
|
||
|
|
||
|
doCheck = false;
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
pyroute2
|
||
|
cryptography
|
||
|
];
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "ArgosyLabs";
|
||
|
repo = "wgnlpy";
|
||
|
rev = "2dc844a48651d6b62d03fd2916e829bf56929c18";
|
||
|
hash = "sha256-5XAfBiKx4SqouA57PxmaCb0ea7mT2VeUI1tgnQE/ZwQ=";
|
||
|
};
|
||
|
}
|