9 buildPythonPackage rec {
10 pname = "watchdog-gevent";
12 format = "setuptools";
14 # Need to fetch from github because tests are not present in pypi
15 src = fetchFromGitHub {
17 repo = "watchdog_gevent";
19 hash = "sha256-FESm3fNuLmOg2ilI/x8U9LuAimHLnahcTHYzW/nzOVY=";
22 propagatedBuildInputs = [ watchdog gevent ];
26 -e 's:--cov watchdog_gevent::' \
27 -e 's:--cov-report html::'
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "watchdog_gevent" ];
35 description = "A gevent-based observer for watchdog";
36 homepage = "https://github.com/Bogdanp/watchdog_gevent";
37 license = licenses.asl20;
38 maintainers = with maintainers; [ traxys ];