Files
pyrad3/default.nix
Istvan Ruzman 6b639f3aaf Initial commit
2020-07-02 16:01:29 +02:00

12 lines
199 B
Nix

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