From 6a125ca9fb6d4eb444d99a3fd15f7416b7a03893 Mon Sep 17 00:00:00 2001 From: Angus Trau Date: Tue, 27 Jul 2021 11:10:54 +1000 Subject: [PATCH 1/2] pythonPackages.inotify-simple: 1.2.1 -> 1.3.5 --- pkgs/development/python-modules/inotify-simple/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/inotify-simple/default.nix b/pkgs/development/python-modules/inotify-simple/default.nix index 898737ca7b49..1285cd7bccb8 100644 --- a/pkgs/development/python-modules/inotify-simple/default.nix +++ b/pkgs/development/python-modules/inotify-simple/default.nix @@ -2,12 +2,12 @@ buildPythonPackage rec { pname = "inotify-simple"; - version = "1.2.1"; + version = "1.3.5"; src = fetchPypi { pname = "inotify_simple"; inherit version; - sha256 = "132craajflksgxxwjawj73nn1ssv8jn58j3k5vvyiq03avbz4sfv"; + sha256 = "0a61bh087cq5wfrvz680hg5pmykb9gmy26kwyn6ims2akkjgyh44"; }; # The package has no tests From b804cd913a0f2970788c7ab1b0154afd868d00ff Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 27 Jul 2021 10:35:42 +0200 Subject: [PATCH 2/2] pythonPackages.inotify-simple: add pythonImportsCheck --- pkgs/development/python-modules/inotify-simple/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/inotify-simple/default.nix b/pkgs/development/python-modules/inotify-simple/default.nix index 1285cd7bccb8..fe5f8ae9f11b 100644 --- a/pkgs/development/python-modules/inotify-simple/default.nix +++ b/pkgs/development/python-modules/inotify-simple/default.nix @@ -13,6 +13,8 @@ buildPythonPackage rec { # The package has no tests doCheck = false; + pythonImportsCheck = [ "inotify_simple" ]; + meta = with lib; { description = "A simple Python wrapper around inotify"; homepage = "https://github.com/chrisjbillington/inotify_simple";