biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / inotifyrecursive / default.nix
blob678e45c14d20b65c3e98d930bd5023e0b6e57055
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   inotify-simple,
6 }:
8 buildPythonPackage rec {
9   pname = "inotifyrecursive";
10   version = "0.3.5";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "osRQsxdpPkU4QW+Q6x14WFBtr+a4uIUDe9LdmuLa+h4=";
16   };
18   propagatedBuildInputs = [ inotify-simple ];
20   # No tests included
21   doCheck = false;
22   pythonImportsCheck = [ pname ];
24   meta = with lib; {
25     description = "Simple recursive inotify watches for Python";
26     homepage = "https://github.com/letorbi/inotifyrecursive";
27     license = licenses.lgpl3Plus;
28     maintainers = with maintainers; [ Flakebi ];
29   };