From 364c59dd9435ab9aedb79282568b0eeb5b0cbcc0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 27 Dec 2018 15:24:41 +0100 Subject: [PATCH] python.pkgs.pytest_xdist: pytest-forked is needed during runtime, fixes #45060 --- pkgs/development/python-modules/pytest-xdist/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pytest-xdist/default.nix b/pkgs/development/python-modules/pytest-xdist/default.nix index 9b1be86a7c8e..a8fc1c6742b9 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, filelock }: +{ stdenv, fetchPypi, buildPythonPackage, execnet, pytest, setuptools_scm, pytest-forked, filelock, six }: buildPythonPackage rec { pname = "pytest-xdist"; @@ -9,9 +9,9 @@ buildPythonPackage rec { sha256 = "909bb938bdb21e68a28a8d58c16a112b30da088407b678633efb01067e3923de"; }; - nativeBuildInputs = [ setuptools_scm ]; - checkInputs = [ pytest pytest-forked filelock ]; - propagatedBuildInputs = [ execnet ]; + nativeBuildInputs = [ setuptools_scm pytest ]; + checkInputs = [ pytest filelock ]; + propagatedBuildInputs = [ execnet pytest-forked six ]; checkPhase = '' # Excluded tests access file system