1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "sphinxcontrib-devhelp";
8 version = "1.0.2";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "ff7f1afa7b9642e7060379360a67e9c41e8f3121f2ce9164266f61b9f4b338e4";
13 };
14
15 # Check is disabled due to circular dependency of sphinx
16 doCheck = false;
17
18 meta = with lib; {
19 description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.";
20 homepage = "https://github.com/sphinx-doc/sphinxcontrib-devhelp";
21 license = licenses.bsd0;
22 maintainers = teams.sphinx.members;
23 };
24}