From f23381a2ee322543203e928da6053a7c3eda44e1 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 3 Jan 2025 08:36:47 +0100 Subject: [PATCH] zfs-replicate: fix typo in comment --- pkgs/by-name/zf/zfs-replicate/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/zf/zfs-replicate/package.nix b/pkgs/by-name/zf/zfs-replicate/package.nix index ab110b740786..130d6e813c04 100644 --- a/pkgs/by-name/zf/zfs-replicate/package.nix +++ b/pkgs/by-name/zf/zfs-replicate/package.nix @@ -19,7 +19,7 @@ python3Packages.buildPythonApplication rec { }; # For compression to work, both local and remote systems must have lz4 installed. - # This hard codes the path to the lz4 when running it on the local system. + # This hard codes the path to the lz4 binary when running it on the local system. postPatch = '' substituteInPlace zfs/replicate/compress/command.py \ --replace-fail \ @@ -37,9 +37,9 @@ python3Packages.buildPythonApplication rec { ]; nativeCheckInputs = with python3Packages; [ - pytestCheckHook hypothesis pytest-cov-stub + pytestCheckHook ]; doCheck = true;