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