pythonPackages.sphinxcontrib-qthelp: disable python2

This commit is contained in:
Jonathan Ringer
2020-08-15 16:15:59 -07:00
parent b7be00ad5e
commit a3f0b7bfef
@@ -1,11 +1,13 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "sphinxcontrib-qthelp";
version = "1.0.3";
disabled = isPy27;
src = fetchPypi {
inherit pname version;