python3Packages.pytest-xdist: 2.2.1 -> 2.3.0

https://github.com/pytest-dev/pytest-xdist/blob/v2.3.0/CHANGELOG.rst
This commit is contained in:
Robert Schütz 2021-06-17 19:48:09 +02:00 committed by Jonathan Ringer
parent 30097aeabc
commit b3c54f5c07
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pythonOlder
, setuptools-scm
, pytestCheckHook
, filelock
@ -13,12 +13,12 @@
buildPythonPackage rec {
pname = "pytest-xdist";
version = "2.2.1";
disabled = isPy27;
version = "2.3.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "718887296892f92683f6a51f25a3ae584993b06f7076ce1e1fd482e59a8220a2";
sha256 = "e8ecde2f85d88fbcadb7d28cb33da0fa29bca5cf7d5967fa89fc0e97e5299ea5";
};
nativeBuildInputs = [ setuptools-scm ];
@ -39,7 +39,7 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "py.test xdist plugin for distributed testing and loop-on-failing modes";
description = "Pytest 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 ];