Initial commit

This commit is contained in:
Istvan Ruzman
2020-07-02 16:01:29 +02:00
commit 6b639f3aaf
65 changed files with 7298 additions and 0 deletions

11
default.nix Normal file
View File

@@ -0,0 +1,11 @@
{pkgs, python, ...}:
python.pkgs.buildPythonPackage rec {
pname = "pyrad";
version = "3.0-alpha";
buildInputs = with python.pkgs; [ netaddr six ];
checkInputs = with python.pkgs; [
];
}