python3Packages.pyrad: revamp

- Use pyproject build
- Patch poetry-core usage
- Use unittest over nosetest
- Fix meta.homepage
This commit is contained in:
Martin Weinelt 2022-04-14 22:15:49 +02:00
parent 8c7d490da6
commit 8adac3f85f

View file

@ -1,8 +1,17 @@
{ buildPythonPackage, fetchFromGitHub, lib, netaddr, six, nose }: { buildPythonPackage
, fetchFromGitHub
, fetchpatch
, lib
, poetry-core
, netaddr
, six
, python
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyrad"; pname = "pyrad";
version = "2.4"; version = "2.4";
format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pyradius"; owner = "pyradius";
@ -11,19 +20,43 @@ buildPythonPackage rec {
sha256 = "sha256-oqgkE0xG/8cmLeRZdGoHkaHbjtByeJwzBJwEdxH8oNY="; sha256 = "sha256-oqgkE0xG/8cmLeRZdGoHkaHbjtByeJwzBJwEdxH8oNY=";
}; };
propagatedBuildInputs = [ netaddr six ]; patches = [
checkInputs = [ nose ]; (fetchpatch {
# Migrate to poetry-core
url = "https://github.com/pyradius/pyrad/commit/a4b70067dd6269e14a2f9530d820390a8a454231.patch";
hash = "sha256-1We9wrVY3Or3GLIKK6hZvEjVYv6JOaahgP9zOMvgErE=";
})
];
checkPhase = '' nativeBuildInputs = [
nosetests -e testBind poetry-core
];
propagatedBuildInputs = [
netaddr
six
];
preCheck = ''
substituteInPlace tests/testServer.py \
--replace "def testBind(self):" "def dontTestBind(self):" \
--replace "def testBindv6(self):" "def dontTestBindv6(self):"
''; '';
pythonImportsCheck = [ "pyrad" ]; checkPhase = ''
runHook preCheck
${python.interpreter} -m unittest discover
runHook postCheck
'';
pythonImportsCheck = [
"pyrad"
];
meta = with lib; { meta = with lib; {
description = "Python RADIUS Implementation"; description = "Python RADIUS Implementation";
homepage = "https://bitbucket.org/zzzeek/sqlsoup"; homepage = "https://github.com/pyradius/pyrad";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.globin ]; maintainers = with maintainers; [ globin ];
}; };
} }