pythonPackages.hieroglyph: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-25 23:11:58 -07:00 committed by Frederik Rietdijk
parent 258794a39c
commit 4a3b1f86aa

View file

@ -1,8 +1,9 @@
{ stdenv, fetchPypi, buildPythonPackage, sphinx }:
{ stdenv, fetchPypi, buildPythonPackage, isPy27, sphinx }:
buildPythonPackage rec {
pname = "hieroglyph";
version = "2.1.0";
disabled = isPy27; # python2 compatible sphinx is too low
src = fetchPypi {
inherit pname version;