We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6509273 commit d663068Copy full SHA for d663068
1 file changed
pkgs/development/python-modules/parametrize-from-file/default.nix
@@ -21,7 +21,7 @@ buildPythonPackage rec {
21
src = fetchPypi {
22
inherit version;
23
pname = "parametrize_from_file";
24
- sha256 = "1c91j869n2vplvhawxc1sv8km8l53bhlxhhms43fyjsqvy351v5j";
+ hash = "sha256-suxQht9YS+8G0RXCTuEahaI60daBda7gpncLmwySIbE=";
25
};
26
27
patches = [
@@ -54,7 +54,14 @@ buildPythonPackage rec {
54
toml
55
];
56
57
- pythonImportsCheck = [ "parametrize_from_file" ];
+ pythonImportsCheck = [
58
+ "parametrize_from_file"
59
+ ];
60
+
61
+ disabledTests = [
62
+ # https://github.com/kalekundert/parametrize_from_file/issues/19
63
+ "test_load_suite_params_err"
64
65
66
meta = with lib; {
67
description = "Read unit test parameters from config files";
0 commit comments