Commit c32a49ef authored by FliegendeWurst's avatar FliegendeWurst
Browse files

python3Packages.pydal: fix Darwin build

parent 8d625a89
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  fetchPypi,
  pytestCheckHook,
@@ -42,6 +43,11 @@ buildPythonPackage rec {
    "--deselect=tests/validators.py::TestValidators::test_IS_IN_DB"
  ];

  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
    # socket.gaierror: [Errno 8] nodename nor servname provided, or not known
    "test_scheduler"
  ];

  pythonImportsCheck = [ "pydal" ];

  meta = with lib; {