python3Packages.pytest-rerunfailures: 8.0 -> 9.0

fixes NixOS/nixpkgs#89508

(cherry picked from commit 53481e4bf033e50f41e4a9bb9bfe6a4ff2bb6a5d)
This commit is contained in:
Raphael Borun Das Gupta 2020-06-05 00:24:15 +02:00 committed by Jonathan Ringer
parent 82036a6090
commit 35a6dc658d

View file

@ -1,12 +1,14 @@
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock }:
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, pytest, mock }:
buildPythonPackage rec {
pname = "pytest-rerunfailures";
version = "9.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "895ac2a6486c0da0468ae31768b818d9f3f7fceddef110970c7dbb09e7b4b8e4";
sha256 = "1r5qnkkhkfvx1jbi1wfyxpyggwyr32w6h5z3i93a03bc92kc4nl9";
};
checkInputs = [ mock pytest ];