snac2: 2.68 -> 2.70 (#379043)
[NixPkgs.git] / pkgs / development / python-modules / inotify-simple / default.nix
blobe5f523ffeb9aef9616158bd0b7ca3bf56c767106
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "inotify-simple";
9   version = "1.3.5";
10   format = "setuptools";
12   src = fetchPypi {
13     pname = "inotify_simple";
14     inherit version;
15     sha256 = "0a61bh087cq5wfrvz680hg5pmykb9gmy26kwyn6ims2akkjgyh44";
16   };
18   # The package has no tests
19   doCheck = false;
21   pythonImportsCheck = [ "inotify_simple" ];
23   meta = with lib; {
24     description = "Simple Python wrapper around inotify";
25     homepage = "https://github.com/chrisjbillington/inotify_simple";
26     license = licenses.bsd2;
27     maintainers = with maintainers; [ erikarvstedt ];
28   };