python3Packages.watchdog: enable tests
This commit is contained in:
parent
33db0f7686
commit
44afe6bba1
@ -5,6 +5,8 @@
|
|||||||
, pathtools
|
, pathtools
|
||||||
, pyyaml
|
, pyyaml
|
||||||
, pkgs
|
, pkgs
|
||||||
|
, pytest-cov
|
||||||
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -18,9 +20,19 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin
|
buildInputs = lib.optionals stdenv.isDarwin
|
||||||
[ pkgs.darwin.apple_sdk.frameworks.CoreServices ];
|
[ 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; {
|
meta = with lib; {
|
||||||
description = "Python API and shell utilities to monitor file system events";
|
description = "Python API and shell utilities to monitor file system events";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user