housekeeping, update poetry and flake.nix

This commit is contained in:
Istvan Ruzman
2021-07-23 10:40:22 +02:00
parent 36885452ce
commit 804063a507
7 changed files with 466 additions and 476 deletions

View File

@@ -1,22 +0,0 @@
{ 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 ];
};
}