blob: 5413632c92b56e8acbd0a7492870551b87cbff5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchPypi,
inotify-simple,
}:
buildPythonPackage rec {
pname = "inotifyrecursive";
version = "0.3.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "osRQsxdpPkU4QW+Q6x14WFBtr+a4uIUDe9LdmuLa+h4=";
};
propagatedBuildInputs = [ inotify-simple ];
# No tests included
doCheck = false;
pythonImportsCheck = [ pname ];
meta = {
description = "Simple recursive inotify watches for Python";
homepage = "https://github.com/letorbi/inotifyrecursive";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ Flakebi ];
};
}
|