From c750f1466d4ca483f53e2ee00d255a80c25d9abc Mon Sep 17 00:00:00 2001 From: pacien Date: Sun, 15 May 2022 22:01:48 +0200 Subject: [PATCH] python3Packages.embrace: disable check phase on Darwin Some test for hot-reload fails on Darwin, but the rest of the library should remain usable. Upstream issue: https://todo.sr.ht/~olly/embrace-sql/4 --- pkgs/development/python-modules/embrace/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/embrace/default.nix b/pkgs/development/python-modules/embrace/default.nix index 414425ed6f2..1e38a550d17 100644 --- a/pkgs/development/python-modules/embrace/default.nix +++ b/pkgs/development/python-modules/embrace/default.nix @@ -1,4 +1,5 @@ -{ lib, buildPythonPackage, fetchFromSourcehut, sqlparse, wrapt, pytestCheckHook }: +{ stdenv, lib, buildPythonPackage, fetchFromSourcehut, + sqlparse, wrapt, pytestCheckHook }: buildPythonPackage rec { pname = "embrace"; @@ -16,6 +17,10 @@ buildPythonPackage rec { checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "embrace" ]; + # Some test for hot-reload fails on Darwin, but the rest of the library + # should remain usable. (https://todo.sr.ht/~olly/embrace-sql/4) + doCheck = !stdenv.isDarwin; + meta = with lib; { description = "Embrace SQL keeps your SQL queries in SQL files"; homepage = "https://pypi.org/project/embrace/";