pythonPackages.sphinxcontrib-qthelp: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-15 15:37:57 -07:00
parent b7be00ad5e
commit a3f0b7bfef
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,11 +1,13 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "sphinxcontrib-qthelp"; pname = "sphinxcontrib-qthelp";
version = "1.0.3"; version = "1.0.3";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;