about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sqlobject
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-10-07 20:40:52 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-10-07 21:32:47 +0200
commitdcc9efa371230a0d1831077a5f8fc086a3065b91 (patch)
tree9aeaddc72f8560dffe2f7b833d9498bb183bce0c /pkgs/development/python-modules/sqlobject
parentec7ec7db7d39dc58afb8463385514c9b7b7a9999 (diff)
python39Packages.sqlobject: add missing meta.maintainers, switch to pytestCheckHook
Diffstat (limited to 'pkgs/development/python-modules/sqlobject')
-rw-r--r--pkgs/development/python-modules/sqlobject/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/sqlobject/default.nix b/pkgs/development/python-modules/sqlobject/default.nix
index 89f22724c93a7..c645a850f4972 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; [ ];
   };
-
 }