python310Packages.watchdog 0 -> 1 attrpath: python310Packages.watchdog Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/2bff8ksqy4hdcw70v3sjq6kzy9x0jn8z-packages.json.drv building '/nix/store/2bff8ksqy4hdcw70v3sjq6kzy9x0jn8z-packages.json.drv'... Going to be running update for following packages: - python3.10-watchdog-2.2.0 Press Enter key to continue... Running update for: - python3.10-watchdog-2.2.0: UPDATING ... - python3.10-watchdog-2.2.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/watchdog/default.nix b/pkgs/development/python-modules/watchdog/default.nix index a242c7ec9c6..043b1e8aff6 100644 --- a/pkgs/development/python-modules/watchdog/default.nix +++ b/pkgs/development/python-modules/watchdog/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "watchdog"; - version = "2.2.0"; + version = "2.2.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-g8+Lxg2cYTtmpMAYBRhz1ic9nkXQQO7QbWqWJBvY7AE="; + hash = "sha256-zcwjyVKGAaiik+tDacvRT2tPNPB66HaUISUunCJxi28="; }; patches = lib.optionals (stdenv.isDarwin && !stdenv.isAarch64) [ No auto update branch exists Old version 2.2.0" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , CoreServices , fetchpatch , fetchPypi , flaky , pathtools , pytest-timeout , pytestCheckHook , pythonOlder , pyyaml }: buildPythonPackage rec { pname = "watchdog"; version = "2.2.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-zcwjyVKGAaiik+tDacvRT2tPNPB66HaUISUunCJxi28="; }; patches = lib.optionals (stdenv.isDarwin && !stdenv.isAarch64) [ ./force-kqueue.patch ]; buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]; propagatedBuildInputs = [ pathtools pyyaml ]; nativeCheckInputs = [ flaky pytest-timeout pytestCheckHook ]; postPatch = '' substituteInPlace setup.cfg \ --replace "--cov=watchdog" "" \ --replace "--cov-report=term-missing" "" ''; disabledTests = [ # probably failing because of an encoding related issue "test_create_wrong_encoding" ] ++ lib.optionals (stdenv.isDarwin && !stdenv.isAarch64) [ "test_delete" "test_separate_consecutive_moves" ]; disabledTestPaths = [ # Tests are flaky "tests/test_inotify_buffer.py" ]; pythonImportsCheck = [ "watchdog" ]; meta = with lib; { description = "Python API and shell utilities to monitor file system events"; homepage = "https://github.com/gorakhargosh/watchdog"; changelog = "https://github.com/gorakhargosh/watchdog/blob/v${version}/changelog.rst"; license = licenses.asl20; maintainers = with maintainers; [ goibhniu ]; }; }