Skip to content

Commit

Permalink
python313Packages.jsonconversion: disable failing test on Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Jan 11, 2025
1 parent 0a80e38 commit 0dc1b8d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/jsonconversion/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
numpy,
pdm-backend,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
setuptools,
}:
Expand Down Expand Up @@ -42,6 +43,8 @@ buildPythonPackage rec {

pythonImportsCheck = [ "jsonconversion" ];

disabledTests = lib.optionals (pythonAtLeast "3.13") [ "test_dict" ];

meta = with lib; {
description = "This python module helps converting arbitrary Python objects into JSON strings and back";
homepage = "https://github.com/DLR-RM/python-jsonconversion";
Expand Down

0 comments on commit 0dc1b8d

Please sign in to comment.