python3Packages.watchdog: enable tests

wip/yesman
Fabian Affolter 3 years ago
parent 33db0f7686
commit 44afe6bba1
  1. 16
      pkgs/development/python-modules/watchdog/default.nix

@ -5,6 +5,8 @@
, pathtools
, pyyaml
, pkgs
, pytest-cov
, pytestCheckHook
}:
buildPythonPackage rec {
@ -18,9 +20,19 @@ buildPythonPackage rec {
buildInputs = lib.optionals stdenv.isDarwin
[ pkgs.darwin.apple_sdk.frameworks.CoreServices ];
propagatedBuildInputs = [ argh pathtools pyyaml ];
doCheck = false;
propagatedBuildInputs = [
argh
pathtools
pyyaml
];
checkInputs = [
pytest-cov
pytestCheckHook
];
pythonImportsCheck = [ "watchdog" ];
meta = with lib; {
description = "Python API and shell utilities to monitor file system events";

Loading…
Cancel
Save