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
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "sphinxcontrib-qthelp";
version = "1.0.3";
disabled = isPy27;
src = fetchPypi {
inherit pname version;