Merge pull request #135649 from fabaff/bump-pyrad

This commit is contained in:
Sandro 2021-08-25 13:16:42 +02:00 committed by GitHub
commit abd617e851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,13 +2,13 @@
buildPythonPackage rec {
pname = "pyrad";
version = "2.3";
version = "2.4";
src = fetchFromGitHub {
owner = "pyradius";
repo = pname;
rev = version;
sha256 = "0hy7999av47s8100afbhxfjb8phbmrqcv530xlvskndby4a8w94k";
sha256 = "sha256-oqgkE0xG/8cmLeRZdGoHkaHbjtByeJwzBJwEdxH8oNY=";
};
propagatedBuildInputs = [ netaddr six ];
@ -18,10 +18,12 @@ buildPythonPackage rec {
nosetests -e testBind
'';
pythonImportsCheck = [ "pyrad" ];
meta = with lib; {
description = "Python RADIUS Implementation";
homepage = "https://bitbucket.org/zzzeek/sqlsoup";
license = licenses.mit;
license = licenses.bsd3;
maintainers = [ maintainers.globin ];
};
}