27 lines
438 B
Nix
27 lines
438 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, flit
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyrad3";
|
|
version = "0.2.0";
|
|
|
|
nativeBuildInputs = [ flit ];
|
|
src = lib.cleanSource ./.;
|
|
|
|
format = "pyproject";
|
|
|
|
checkInputs = [ pytest ];
|
|
checkPhase = "pytest";
|
|
|
|
meta = with lib;
|
|
{
|
|
description = "RADIUS tools for python";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = "Istvan Ruzman";
|
|
};
|
|
}
|