Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyinotify / default.nix
blobe5714ec18001fa1be6c04645ed73c75f9c9e0ee4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "pyinotify";
8   version = "0.9.6";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "1x3i9wmzw33fpkis203alygfnrkcmq9w1aydcm887jh6frfqm6cw";
13   };
15   # No tests distributed
16   doCheck = false;
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   };