python3Packages.inotifyrecursive: init at 0.3.5
This commit is contained in:
parent
c580b69c10
commit
4c957da9bb
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/inotifyrecursive/default.nix
Normal file
28
pkgs/development/python-modules/inotifyrecursive/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3577,6 +3577,8 @@ in {
|
||||||
|
|
||||||
inotify-simple = callPackage ../development/python-modules/inotify-simple { };
|
inotify-simple = callPackage ../development/python-modules/inotify-simple { };
|
||||||
|
|
||||||
|
inotifyrecursive = callPackage ../development/python-modules/inotifyrecursive { };
|
||||||
|
|
||||||
inquirer = callPackage ../development/python-modules/inquirer { };
|
inquirer = callPackage ../development/python-modules/inquirer { };
|
||||||
|
|
||||||
intake = callPackage ../development/python-modules/intake { };
|
intake = callPackage ../development/python-modules/intake { };
|
||||||
|
|
Loading…
Reference in a new issue