summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-serializinghtml
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-08-15 15:46:27 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-08-15 16:16:00 -0700
commitae67ea49c5d8e8388571d54ef7c7749e301164b6 (patch)
treea4a9ea4f18d5e7ffb21b52c2c8a4c0c1deeaf47e /pkgs/development/python-modules/sphinxcontrib-serializinghtml
parent1676e5efbc955380b739288e8eab0ad8273fa633 (diff)
downloadnixpkgs-ae67ea49c5d8e8388571d54ef7c7749e301164b6.tar
nixpkgs-ae67ea49c5d8e8388571d54ef7c7749e301164b6.tar.gz
nixpkgs-ae67ea49c5d8e8388571d54ef7c7749e301164b6.tar.bz2
nixpkgs-ae67ea49c5d8e8388571d54ef7c7749e301164b6.tar.lz
nixpkgs-ae67ea49c5d8e8388571d54ef7c7749e301164b6.tar.xz
nixpkgs-ae67ea49c5d8e8388571d54ef7c7749e301164b6.tar.zst
nixpkgs-ae67ea49c5d8e8388571d54ef7c7749e301164b6.zip
python2Packages.sphinxcontrib-serializinghtml: disable python2
```
  Processing ./sphinxcontrib_serializinghtml-1.1.4-py2.py3-none-any.whl
  ERROR: Package 'sphinxcontrib-serializinghtml' requires a different Python: 2.7.18 not in '>=3.5'
```
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-serializinghtml')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix b/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix
index 5a5c0e3df6f..05f2749c49d 100644
--- a/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix
+++ b/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix
@@ -1,11 +1,13 @@
 { stdenv
 , buildPythonPackage
 , fetchPypi
+, isPy27
 }:
 
 buildPythonPackage rec {
   pname = "sphinxcontrib-serializinghtml";
   version = "1.1.4";
+  disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;