From 35a6dc658dd7d852073ca8cde5982fc7aee4e3ae Mon Sep 17 00:00:00 2001 From: Raphael Borun Das Gupta Date: Fri, 5 Jun 2020 00:24:15 +0200 Subject: [PATCH] python3Packages.pytest-rerunfailures: 8.0 -> 9.0 fixes NixOS/nixpkgs#89508 (cherry picked from commit 53481e4bf033e50f41e4a9bb9bfe6a4ff2bb6a5d) --- .../python-modules/pytest-rerunfailures/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix index 79631824b927..86083265dbda 100644 --- a/pkgs/development/python-modules/pytest-rerunfailures/default.nix +++ b/pkgs/development/python-modules/pytest-rerunfailures/default.nix @@ -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 ];