mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python.pkgs.pytest_xdist: pytest-forked is needed during runtime, fixes #45060
This commit is contained in:
parent
ebe05a7109
commit
364c59dd94
1 changed files with 4 additions and 4 deletions
|
@ -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 {
|
buildPythonPackage rec {
|
||||||
pname = "pytest-xdist";
|
pname = "pytest-xdist";
|
||||||
|
@ -9,9 +9,9 @@ buildPythonPackage rec {
|
||||||
sha256 = "909bb938bdb21e68a28a8d58c16a112b30da088407b678633efb01067e3923de";
|
sha256 = "909bb938bdb21e68a28a8d58c16a112b30da088407b678633efb01067e3923de";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ setuptools_scm ];
|
nativeBuildInputs = [ setuptools_scm pytest ];
|
||||||
checkInputs = [ pytest pytest-forked filelock ];
|
checkInputs = [ pytest filelock ];
|
||||||
propagatedBuildInputs = [ execnet ];
|
propagatedBuildInputs = [ execnet pytest-forked six ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
# Excluded tests access file system
|
# Excluded tests access file system
|
||||||
|
|
Loading…
Reference in a new issue