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/inotifyrecursive/default.nix

28 lines
612 B

{ lib
, buildPythonPackage
, fetchPypi
, inotify-simple
}:
buildPythonPackage rec {
pname = "inotifyrecursive";
version = "0.3.5";
src = fetchPypi {
inherit pname version;
sha256 = "osRQsxdpPkU4QW+Q6x14WFBtr+a4uIUDe9LdmuLa+h4=";
};
propagatedBuildInputs = [ inotify-simple ];
# No tests included
doCheck = false;
pythonImportsCheck = [ pname ];
meta = with lib; {
description = "Simple recursive inotify watches for Python";
homepage = "https://github.com/letorbi/inotifyrecursive";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ Flakebi ];
};
}