python310Packages.libtmux: fix build on darwin

This commit is contained in:
Mario Rodas 2022-08-13 04:45:00 +00:00
parent 878db86102
commit eb33604cff

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, fetchFromGitHub
, buildPythonPackage
, poetry-core
@ -30,6 +31,10 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = lib.optionals stdenv.isDarwin [ "--ignore=tests/test_test.py" ];
pythonImportsCheck = [ "libtmux" ];
meta = with lib; {
description = "Scripting library for tmux";
homepage = "https://libtmux.readthedocs.io/";