My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/inotify-simple/default.nix

24 lines
594 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "inotify-simple";
version = "1.3.5";
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; [ earvstedt ];
};
}