unblob: use disabledTests

disabledTests no longer Bash-expand as array elements
and thus no longer swallow parameters between square brackets.

Changed files
+8 -12
pkgs
by-name
un
unblob
+8 -12
pkgs/by-name/un/unblob/package.nix
···
versionCheckProgramArg = "--version";
-
pytestFlagsArray =
-
let
-
# `disabledTests` swallows the parameters between square brackets
-
disabled = [
-
# https://github.com/tytso/e2fsprogs/issues/152
-
"test_all_handlers[filesystem.extfs]"
-
];
-
in
-
[
-
"--no-cov"
-
"-k 'not ${lib.concatStringsSep " and not " disabled}'"
-
];
passthru = {
updateScript = gitUpdater { };
···
versionCheckProgramArg = "--version";
+
pytestFlags = [
+
"--no-cov"
+
];
+
+
disabledTests = [
+
# https://github.com/tytso/e2fsprogs/issues/152
+
"test_all_handlers[filesystem.extfs]"
+
];
passthru = {
updateScript = gitUpdater { };