mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
python3Packages.pytest-rerunfailures: 8.0 -> 9.0
fixes NixOS/nixpkgs#89508
This commit is contained in:
parent
d67e2a2702
commit
53481e4bf0
@ -1,12 +1,14 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, pytest, mock }:
|
||||
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, pytest, mock }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-rerunfailures";
|
||||
version = "8.0";
|
||||
version = "9.0";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "04p8rfvv7yi3gsdm1dw1mfhjwg6507rhgj7nbm5gfqw4kxmj7h8p";
|
||||
sha256 = "1r5qnkkhkfvx1jbi1wfyxpyggwyr32w6h5z3i93a03bc92kc4nl9";
|
||||
};
|
||||
|
||||
checkInputs = [ mock pytest ];
|
||||
|
Loading…
Reference in New Issue
Block a user