Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / inotifyrecursive / default.nix
blobd0f81abaa47f7ccc646c282628cd9abd3cee79ff
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , inotify-simple
5 }:
7 buildPythonPackage rec {
8   pname = "inotifyrecursive";
9   version = "0.3.5";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "osRQsxdpPkU4QW+Q6x14WFBtr+a4uIUDe9LdmuLa+h4=";
14   };
16   propagatedBuildInputs = [ inotify-simple ];
18   # No tests included
19   doCheck = false;
20   pythonImportsCheck = [ pname ];
22   meta = with lib; {
23     description = "Simple recursive inotify watches for Python";
24     homepage = "https://github.com/letorbi/inotifyrecursive";
25     license = licenses.lgpl3Plus;
26     maintainers = with maintainers; [ Flakebi ];
27   };