From 399425b9eeac76c743cc0d36138b2986507bac72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 4 Nov 2018 16:48:43 +0100 Subject: [PATCH] python.pkgs.pytest_xdist: add filelock to checkInputs --- pkgs/development/python-modules/pytest-xdist/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-xdist/default.nix b/pkgs/development/python-modules/pytest-xdist/default.nix index d592411aa78..fdfe0b3006e 100644 --- a/pkgs/development/python-modules/pytest-xdist/default.nix +++ b/pkgs/development/python-modules/pytest-xdist/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked }: +{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked, filelock }: buildPythonPackage rec { pname = "pytest-xdist"; @@ -10,7 +10,7 @@ buildPythonPackage rec { }; nativeBuildInputs = [ setuptools_scm ]; - buildInputs = [ pytest pytest-forked ]; + checkInputs = [ pytest pytest-forked filelock ]; propagatedBuildInputs = [ execnet ]; checkPhase = '' @@ -26,5 +26,6 @@ buildPythonPackage rec { description = "py.test xdist plugin for distributed testing and loop-on-failing modes"; homepage = https://github.com/pytest-dev/pytest-xdist; license = licenses.mit; + maintainers = with maintainers; [ dotlambda ]; }; }