python3Packages.watchfiles: 1.1.1 -> 1.2.0

https://github.com/samuelcolvin/watchfiles/releases/tag/v1.2.0
This commit is contained in:
Martin Weinelt
2026-07-12 02:53:51 +02:00
parent d75a3fa17d
commit 427f83bc1b

View File

@@ -13,19 +13,19 @@
buildPythonPackage (finalAttrs: {
pname = "watchfiles";
version = "1.1.1";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "samuelcolvin";
repo = "watchfiles";
tag = "v${finalAttrs.version}";
hash = "sha256-UlQnCYSNU9H4x31KenSfYExGun94ekrOCwajORemSco=";
hash = "sha256-gfH/8o3WsGL4Qki5kRrWpQLyk85HgTtR6iImInPYthg=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs) pname src version;
hash = "sha256-6sxtH7KrwAWukPjLSMAebguPmeAHbC7YHOn1QiRPigs=";
hash = "sha256-GFGhEXW0M23G0NB4Bu1FXV9Bmdt9weznHHSD/6rBSjI=";
};
nativeBuildInputs = [
@@ -52,6 +52,10 @@ buildPythonPackage (finalAttrs: {
rm -rf watchfiles
'';
pytestFlags = [
"-Wignore::pytest.PytestRemovedIn10Warning"
];
disabledTests = [
# BaseExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception)
"test_awatch_interrupt_raise"