ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / inotify-simple / default.nix
blob8fdc7c4926c972d8e03b6819b05057f74f8aaf5b
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "inotify-simple";
5   version = "1.3.5";
7   src = fetchPypi {
8     pname = "inotify_simple";
9     inherit version;
10     sha256 = "0a61bh087cq5wfrvz680hg5pmykb9gmy26kwyn6ims2akkjgyh44";
11   };
13   # The package has no tests
14   doCheck = false;
16   pythonImportsCheck = [ "inotify_simple" ];
18   meta = with lib; {
19     description = "A simple Python wrapper around inotify";
20     homepage = "https://github.com/chrisjbillington/inotify_simple";
21     license = licenses.bsd2;
22     maintainers = with maintainers; [ erikarvstedt ];
23   };