python39Packages.sqlobject: add missing meta.maintainers, switch to pytestCheckHook

This commit is contained in:
Sandro Jäckel 2021-10-07 20:40:52 +02:00
parent ec7ec7db7d
commit dcc9efa371
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytest , pytestCheckHook
, FormEncode , FormEncode
, pastedeploy , pastedeploy
, paste , paste
@ -17,13 +17,14 @@ buildPythonPackage rec {
sha256 = "45064184decf7f42d386704e5f47a70dee517d3e449b610506e174025f84d921"; sha256 = "45064184decf7f42d386704e5f47a70dee517d3e449b610506e174025f84d921";
}; };
checkInputs = [ pytest ];
propagatedBuildInputs = [ FormEncode pastedeploy paste pydispatcher ]; propagatedBuildInputs = [ FormEncode pastedeploy paste pydispatcher ];
checkInputs = [ pytestCheckHook ];
meta = with lib; { meta = with lib; {
description = "Object Relational Manager for providing an object interface to your database"; description = "Object Relational Manager for providing an object interface to your database";
homepage = "http://www.sqlobject.org/"; homepage = "http://www.sqlobject.org/";
license = licenses.lgpl21; license = licenses.lgpl21;
maintainers = with maintainers; [ ];
}; };
} }