Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / inotifyrecursive / default.nix
blob63ff4ede039ae20799196ff62b5304c0a530a1e7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , inotify-simple
5 }:
7 buildPythonPackage rec {
8   pname = "inotifyrecursive";
9   version = "0.3.5";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "osRQsxdpPkU4QW+Q6x14WFBtr+a4uIUDe9LdmuLa+h4=";
15   };
17   propagatedBuildInputs = [ inotify-simple ];
19   # No tests included
20   doCheck = false;
21   pythonImportsCheck = [ pname ];
23   meta = with lib; {
24     description = "Simple recursive inotify watches for Python";
25     homepage = "https://github.com/letorbi/inotifyrecursive";
26     license = licenses.lgpl3Plus;
27     maintainers = with maintainers; [ Flakebi ];
28   };