about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-htmlhelp
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-08-15 15:45:41 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-08-15 16:16:00 -0700
commit1676e5efbc955380b739288e8eab0ad8273fa633 (patch)
tree307fd418189bf96baa3a88d19b2eaf0fcf8c469d /pkgs/development/python-modules/sphinxcontrib-htmlhelp
parent9b31b18d6ed974e9505eb39147e17c9ab7c39dbd (diff)
python2Packages.sphinxcontrib-htmlhelp: disable python2
```
  Processing ./sphinxcontrib_htmlhelp-1.0.3-py2.py3-none-any.whl
  ERROR: Package 'sphinxcontrib-htmlhelp' requires a different Python: 2.7.18 not in '>=3.5
```
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-htmlhelp')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix b/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix
index 859181d675fcd..8eec8ab3267a9 100644
--- a/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix
+++ b/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix
@@ -1,11 +1,13 @@
 { stdenv
 , buildPythonPackage
 , fetchPypi
+, isPy27
 }:
 
 buildPythonPackage rec {
   pname = "sphinxcontrib-htmlhelp";
   version = "1.0.3";
+  disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;