From dcc9efa371230a0d1831077a5f8fc086a3065b91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 7 Oct 2021 20:40:52 +0200 Subject: [PATCH] python39Packages.sqlobject: add missing meta.maintainers, switch to pytestCheckHook --- pkgs/development/python-modules/sqlobject/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/sqlobject/default.nix b/pkgs/development/python-modules/sqlobject/default.nix index 89f22724c93a..c645a850f497 100644 --- a/pkgs/development/python-modules/sqlobject/default.nix +++ b/pkgs/development/python-modules/sqlobject/default.nix @@ -1,7 +1,7 @@ { lib , buildPythonPackage , fetchPypi -, pytest +, pytestCheckHook , FormEncode , pastedeploy , paste @@ -17,13 +17,14 @@ buildPythonPackage rec { sha256 = "45064184decf7f42d386704e5f47a70dee517d3e449b610506e174025f84d921"; }; - checkInputs = [ pytest ]; propagatedBuildInputs = [ FormEncode pastedeploy paste pydispatcher ]; + checkInputs = [ pytestCheckHook ]; + meta = with lib; { description = "Object Relational Manager for providing an object interface to your database"; homepage = "http://www.sqlobject.org/"; license = licenses.lgpl21; + maintainers = with maintainers; [ ]; }; - }