summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-doctestplus
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-06-20 15:09:14 -0700
committerJon <jonringer@users.noreply.github.com>2020-06-21 21:57:32 -0700
commit3d95ed80b9204234a7548cf2b321ca7ba14e19c9 (patch)
tree28643d45d79cccbee448749958df7703211bbc33 /pkgs/development/python-modules/pytest-doctestplus
parentba332b6f8f5a5f23d6117204d336ccad1f5e98f9 (diff)
downloadnixpkgs-3d95ed80b9204234a7548cf2b321ca7ba14e19c9.tar
nixpkgs-3d95ed80b9204234a7548cf2b321ca7ba14e19c9.tar.gz
nixpkgs-3d95ed80b9204234a7548cf2b321ca7ba14e19c9.tar.bz2
nixpkgs-3d95ed80b9204234a7548cf2b321ca7ba14e19c9.tar.lz
nixpkgs-3d95ed80b9204234a7548cf2b321ca7ba14e19c9.tar.xz
nixpkgs-3d95ed80b9204234a7548cf2b321ca7ba14e19c9.tar.zst
nixpkgs-3d95ed80b9204234a7548cf2b321ca7ba14e19c9.zip
python2Packages.pytest-doctestplus: disable python2, abandoned upstream
Diffstat (limited to 'pkgs/development/python-modules/pytest-doctestplus')
-rw-r--r--pkgs/development/python-modules/pytest-doctestplus/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-doctestplus/default.nix b/pkgs/development/python-modules/pytest-doctestplus/default.nix
index 36e0402dba2..421cca33984 100644
--- a/pkgs/development/python-modules/pytest-doctestplus/default.nix
+++ b/pkgs/development/python-modules/pytest-doctestplus/default.nix
@@ -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;