libtmux: avoid passing pkgs as input

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
Otavio Salvador 2022-04-25 16:43:21 -03:00 committed by Jonathan Ringer
parent 5f5f908cde
commit 5283e2c5ed

View file

@ -3,7 +3,8 @@
, buildPythonPackage
, poetry-core
, pytestCheckHook
, pkgs
, procps
, tmux
}:
buildPythonPackage rec {
@ -23,8 +24,9 @@ buildPythonPackage rec {
];
checkInputs = [
pkgs.procps
pkgs.tmux
procps
tmux
pytestCheckHook
];