depot/third_party/nixpkgs/pkgs/development/python-modules/inotifyrecursive/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
643 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
inotify-simple,
}:
buildPythonPackage rec {
pname = "inotifyrecursive";
version = "0.3.5";
format = "setuptools";
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 ];
};
}