depot/third_party/nixpkgs/pkgs/development/python-modules/inotify-simple/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

25 lines
622 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 = "A simple Python wrapper around inotify";
homepage = "https://github.com/chrisjbillington/inotify_simple";
license = licenses.bsd2;
maintainers = with maintainers; [ erikarvstedt ];
};
}