Unverified Commit 8ebb5df8 authored by Bernardo Meurer's avatar Bernardo Meurer Committed by GitHub
Browse files

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

parents c4dfacf0 d329a02f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
{
  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; {