depot/third_party/nixpkgs/pkgs/development/python-modules/inotify-simple/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
627 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "inotify-simple";
version = "1.3.5";
format = "setuptools";
src = fetchPypi {
pname = "inotify_simple";
inherit version;
sha256 = "0a61bh087cq5wfrvz680hg5pmykb9gmy26kwyn6ims2akkjgyh44";
};
# The package has no tests
doCheck = false;
pythonImportsCheck = [ "inotify_simple" ];
meta = with lib; {
description = "Simple Python wrapper around inotify";
homepage = "https://github.com/chrisjbillington/inotify_simple";
license = licenses.bsd2;
maintainers = with maintainers; [ erikarvstedt ];
};
}