lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.simple-parsing: 0.1.6 -> 0.1.7

Diff: https://github.com/lebrice/SimpleParsing/compare/refs/tags/v0.1.6...v0.1.7

Changelog: https://github.com/lebrice/SimpleParsing/releases/tag/v0.1.7

+14 -6
+14 -6
pkgs/development/python-modules/simple-parsing/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "simple-parsing"; 30 - version = "0.1.6"; 30 + version = "0.1.7"; 31 31 pyproject = true; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "lebrice"; 35 35 repo = "SimpleParsing"; 36 36 tag = "v${version}"; 37 - hash = "sha256-RDS1sWzaQqXp/0a7dXlUHnd6z+GTIpUN1MnUCTI9LGw="; 37 + hash = "sha256-wHk3osr5CNmA/g9ipLy1dgvJoMy1zE/BAGD9ZATE+tc="; 38 38 }; 39 39 40 40 build-system = [ ··· 67 67 ]; 68 68 69 69 disabledTests = [ 70 - # Expected: OrderedDict([('a', 1), ('b', 2), ('c', 5), ('d', 6), ('e', 7)]) 71 - # Got: OrderedDict({'a': 1, 'b': 2, 'c': 5, 'd': 6, 'e': 7}) 72 - # https://github.com/lebrice/SimpleParsing/issues/326 73 - "simple_parsing.utils.dict_union" 70 + # AssertionError 71 + # https://github.com/lebrice/SimpleParsing/issues/338 72 + "test_bool_args_in_help" 73 + "test_desc_from_cls_docstring" 74 + "test_docstring_builds_upon_bases" 75 + "test_help_string" 76 + "test_help_string_displays_default_factory_arguments" 77 + "test_help_takes_value_from_docstring" 78 + "test_issue_48" 79 + "test_running_example_outputs_expected_without_arg" 80 + "test_subgroup_partial_with_nested_field" 81 + "test_weird_docstring_with_field_like" 74 82 ]; 75 83 76 84 meta = {