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