python2Packages.pytest-doctestplus: disable python2, abandoned upstream

This commit is contained in:
Jonathan Ringer 2020-06-20 15:09:14 -07:00 committed by Jon
parent ba332b6f8f
commit 3d95ed80b9
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, six , six
, pytest , pytest
, numpy , numpy
@ -9,6 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-doctestplus"; pname = "pytest-doctestplus";
version = "0.7.0"; version = "0.7.0";
disabled = isPy27; # abandoned upstream
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;