From adb0bda124e17e7bc81bd02f257de92517ae12f0 Mon Sep 17 00:00:00 2001 From: Robert James Hernandez Date: Tue, 9 Jul 2024 00:16:05 +0000 Subject: [PATCH] pyinotify: add pythonImportsCheck for itself --- pkgs/development/python-modules/pyinotify/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pyinotify/default.nix b/pkgs/development/python-modules/pyinotify/default.nix index 4fbb435db53b..5d0b22bfe31f 100644 --- a/pkgs/development/python-modules/pyinotify/default.nix +++ b/pkgs/development/python-modules/pyinotify/default.nix @@ -17,6 +17,8 @@ buildPythonPackage rec { # No tests distributed doCheck = false; + pythonImportsCheck = [ "pyinotify" ]; + meta = with lib; { homepage = "https://github.com/seb-m/pyinotify/wiki"; description = "Monitor filesystems events on Linux platforms with inotify";