23 lines
372 B
Nix
23 lines
372 B
Nix
{ buildPythonPackage, lib, pytest, }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyrad3";
|
|
version = "3.0.0";
|
|
|
|
src = "./.";
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
|
|
meta = with lib; {
|
|
description = "Python RADIUS Implementation";
|
|
homepage = "";
|
|
license = [licenses.mit licenses.apache2];
|
|
maintainers = [ maintainers.lvkm ];
|
|
};
|
|
}
|