python3Packages.pytest-postgresql-darwin: disable checkPhase on darwin (#403422)

This commit is contained in:
Wolfgang Walther
2025-05-02 16:55:27 +00:00
committed by GitHub
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
@@ -62,7 +63,9 @@ buildPythonPackage rec {
"pytest_postgresql.executor"
];
__darwinAllowLocalNetworking = true;
# Can't reliably run checkPhase on darwin because of nix bug, see:
# https://github.com/NixOS/nixpkgs/issues/371242
doCheck = !stdenv.buildPlatform.isDarwin;
meta = {
homepage = "https://pypi.python.org/pypi/pytest-postgresql";