ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / watchdog / default.nix
blobf38b732f9ebb3de7da46514e35e1930960601dd2
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , fetchPypi
5 , pathtools
6 , pyyaml
7 , flaky
8 , pytest-timeout
9 , pytestCheckHook
10 , CoreServices
11 , fetchpatch
14 buildPythonPackage rec {
15   pname = "watchdog";
16   version = "2.1.9";
17   format = "setuptools";
19   src = fetchPypi {
20     inherit pname version;
21     sha256 = "sha256-Q84g67NqUfIfo3b3bR1GkkUrJSfM1gGVDWntNrniFgk=";
22   };
24   patches = lib.optionals (stdenv.isDarwin && !stdenv.isAarch64) [
25     ./force-kqueue.patch
26   ] ++ [
27     (fetchpatch {
28       url = "https://github.com/gorakhargosh/watchdog/commit/255d1e45c17929dd5ba8a6f91aa28771109931cd.patch";
29       sha256 = "sha256-gGgEGuB/0g+4Pv1dXMvIdObjqKruWKkxtufS/dzSlY8=";
30       excludes = [ "changelog.rst" ];
31     })
32   ];
34   buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
36   propagatedBuildInputs = [
37     pathtools
38     pyyaml
39   ];
41   checkInputs = [
42     flaky
43     pytest-timeout
44     pytestCheckHook
45   ];
47   postPatch = ''
48     substituteInPlace setup.cfg \
49       --replace "--cov=watchdog" "" \
50       --replace "--cov-report=term-missing" ""
51   '';
53   disabledTests = [
54     # probably failing because of an encoding related issue
55     "test_create_wrong_encoding"
56   ] ++ lib.optionals (stdenv.isDarwin && !stdenv.isAarch64) [
57     "test_delete"
58   ];
60   disabledTestPaths = [
61     # Tests are flaky
62     "tests/test_inotify_buffer.py"
63   ];
65   pythonImportsCheck = [
66     "watchdog"
67   ];
69   meta = with lib; {
70     description = "Python API and shell utilities to monitor file system events";
71     homepage = "https://github.com/gorakhargosh/watchdog";
72     license = licenses.asl20;
73     maintainers = with maintainers; [ goibhniu ];
74   };