python3Packages.inotifyrecursive: init at 0.3.5

This commit is contained in:
Flakebi 2021-05-13 16:41:09 +02:00
parent c580b69c10
commit 4c957da9bb
No known key found for this signature in database
GPG key ID: 38E7ED984D7DCD02
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ 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 ];
};
}

View file

@ -3577,6 +3577,8 @@ in {
inotify-simple = callPackage ../development/python-modules/inotify-simple { };
inotifyrecursive = callPackage ../development/python-modules/inotifyrecursive { };
inquirer = callPackage ../development/python-modules/inquirer { };
intake = callPackage ../development/python-modules/intake { };