1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pyinotify";
8 version = "0.9.6";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1x3i9wmzw33fpkis203alygfnrkcmq9w1aydcm887jh6frfqm6cw";
13 };
14
15 # No tests distributed
16 doCheck = false;
17
18 meta = with lib; {
19 homepage = "https://github.com/seb-m/pyinotify/wiki";
20 description = "Monitor filesystems events on Linux platforms with inotify";
21 license = licenses.mit;
22 platforms = platforms.linux;
23 };
24
25}