mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
python310Packages.libtmux: fix build on darwin
This commit is contained in:
parent
878db86102
commit
eb33604cff
1 changed files with 5 additions and 0 deletions
|
@ -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/";
|
||||
|
|
Loading…
Reference in a new issue