marshmallow: fix build on i686-linux (#458909)

This commit is contained in:
Bernardo Meurer
2025-11-05 20:42:24 +00:00
committed by GitHub
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
flit-core,
@@ -29,6 +30,11 @@ buildPythonPackage rec {
simplejson
];
disabledTests = lib.optionals stdenv.hostPlatform.isx86_32 [
# Raises a slightly different error than upstream expects: 'Timestamp is too large' instead of 'out of range'
"test_from_timestamp_with_overflow_value"
];
pythonImportsCheck = [ "marshmallow" ];
meta = with lib; {