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