2019-01-27 15:26:28 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "inotify-simple";
|
2019-11-29 06:59:41 +01:00
|
|
|
version = "1.2.1";
|
2019-01-27 15:26:28 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "inotify_simple";
|
|
|
|
inherit version;
|
2019-11-29 06:59:41 +01:00
|
|
|
sha256 = "132craajflksgxxwjawj73nn1ssv8jn58j3k5vvyiq03avbz4sfv";
|
2019-01-27 15:26:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# The package has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A simple Python wrapper around inotify";
|
|
|
|
homepage = https://github.com/chrisjbillington/inotify_simple;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ earvstedt ];
|
|
|
|
};
|
|
|
|
}
|