about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_hawkauth
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-16 23:21:43 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-17 14:11:40 +0100
commit6a0df7fa2efa27a6bbc8cadf4c805128d174e441 (patch)
tree7e1de6ed47747fe529b2b0195dcd3905860bb882 /pkgs/development/python-modules/pyramid_hawkauth
parentcf89f20a03c60671795a7405e35ab08a0c6c96fb (diff)
pythonPackages.pyramid_hawkauth: add import check
Diffstat (limited to 'pkgs/development/python-modules/pyramid_hawkauth')
-rw-r--r--pkgs/development/python-modules/pyramid_hawkauth/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyramid_hawkauth/default.nix b/pkgs/development/python-modules/pyramid_hawkauth/default.nix
index f2f156e98b676..c2e17f8addef4 100644
--- a/pkgs/development/python-modules/pyramid_hawkauth/default.nix
+++ b/pkgs/development/python-modules/pyramid_hawkauth/default.nix
@@ -21,10 +21,12 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ pyramid hawkauthlib tokenlib ];
   buildInputs = [ webtest ];
 
+  pythonImportsCheck = [ "pyramid_hawkauth" ];
+
   meta = with lib; {
     homepage = "https://github.com/mozilla-services/pyramid_hawkauth";
     description = "A Pyramid authentication plugin for HAWK";
     license = licenses.mpl20;
+    maintainers = with maintainers; [ ];
   };
-
 }