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
main
pacien 2 years ago
parent eb78d30bf4
commit c750f1466d
  1. 7
      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/";

Loading…
Cancel
Save