1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "sphinxcontrib-htmlhelp";
8 version = "1.0.2";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "4670f99f8951bd78cd4ad2ab962f798f5618b17675c35c5ac3b2132a14ea8422";
13 };
14
15
16 # Check is disabled due to circular dependency of sphinx
17 doCheck = false;
18
19 meta = with stdenv.lib; {
20 description = "sphinxcontrib-htmlhelp is a sphinx extension which ...";
21 homepage = http://sphinx-doc.org/;
22 license = licenses.bsd0;
23 };
24
25}