1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00

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

View file

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