Files
pyrad3/default.nix
2020-09-21 18:16:03 +02:00

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 ];
};
}