Skip to content

Commit 58ffa16

Browse files
python3Packages.pydal: fix Darwin build (#408615)
2 parents eebd349 + c32a49e commit 58ffa16

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkgs/development/python-modules/pydal/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
lib,
3+
stdenv,
34
buildPythonPackage,
45
fetchPypi,
56
pytestCheckHook,
@@ -42,6 +43,11 @@ buildPythonPackage rec {
4243
"--deselect=tests/validators.py::TestValidators::test_IS_IN_DB"
4344
];
4445

46+
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
47+
# socket.gaierror: [Errno 8] nodename nor servname provided, or not known
48+
"test_scheduler"
49+
];
50+
4551
pythonImportsCheck = [ "pydal" ];
4652

4753
meta = with lib; {

0 commit comments

Comments
 (0)