2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-10-21 23:38:15 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 23:37:57 +01:00
|
|
|
, isPy27
|
2019-10-21 23:38:15 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-qthelp";
|
2020-05-09 11:02:01 +01:00
|
|
|
version = "1.0.3";
|
2020-08-15 23:37:57 +01:00
|
|
|
disabled = isPy27;
|
2019-10-21 23:38:15 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 11:02:01 +01:00
|
|
|
sha256 = "4c33767ee058b70dba89a6fc5c1892c0d57a54be67ddd3e7875a18d14cba5a72";
|
2019-10-21 23:38:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-21 23:38:15 +01:00
|
|
|
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2019-10-21 23:38:15 +01:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|