Merge pull request #131655 from fabaff/angustrau-inotify-simple

This commit is contained in:
Sandro 2021-07-27 09:04:25 +00:00 committed by GitHub
commit 17da99e6a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,17 +2,19 @@
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
doCheck = false;
pythonImportsCheck = [ "inotify_simple" ];
meta = with lib; {
description = "A simple Python wrapper around inotify";
homepage = "https://github.com/chrisjbillington/inotify_simple";