summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-04-28 10:09:26 +0200
committerGitHub <noreply@github.com>2023-04-28 10:09:26 +0200
commit2884a9a8a899ff8c1d88ce83596fa32020249ccb (patch)
tree1212ffa963214d1e03cc018ae0268dc3963bbd21
parentb86d49493065eb0ee9527d0139f929fe28034311 (diff)
downloadnixpkgs-2884a9a8a899ff8c1d88ce83596fa32020249ccb.tar
nixpkgs-2884a9a8a899ff8c1d88ce83596fa32020249ccb.tar.gz
nixpkgs-2884a9a8a899ff8c1d88ce83596fa32020249ccb.tar.bz2
nixpkgs-2884a9a8a899ff8c1d88ce83596fa32020249ccb.tar.lz
nixpkgs-2884a9a8a899ff8c1d88ce83596fa32020249ccb.tar.xz
nixpkgs-2884a9a8a899ff8c1d88ce83596fa32020249ccb.tar.zst
nixpkgs-2884a9a8a899ff8c1d88ce83596fa32020249ccb.zip
python310Packages.authheaders: add pythonImportsCheck
-rw-r--r--pkgs/development/python-modules/authheaders/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/authheaders/default.nix b/pkgs/development/python-modules/authheaders/default.nix
index b70078d4167..43d043cf26c 100644
--- a/pkgs/development/python-modules/authheaders/default.nix
+++ b/pkgs/development/python-modules/authheaders/default.nix
@@ -27,6 +27,10 @@ buildPythonPackage rec {
     publicsuffix2
   ];
 
+  pythonImportsCheck = [
+    "authheaders"
+  ];
+
   meta = with lib; {
     description = "Python library for the generation of email authentication headers";
     homepage = "https://github.com/ValiMail/authentication-headers";