summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix
blob: 88b54d8e94f73b8570ae8ec3e8c4f7def69f2fe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "sphinxcontrib-htmlhelp";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4670f99f8951bd78cd4ad2ab962f798f5618b17675c35c5ac3b2132a14ea8422";
  };


  # Check is disabled due to circular dependency of sphinx
  doCheck = false;

  meta = with stdenv.lib; {
    description = "sphinxcontrib-htmlhelp is a sphinx extension which ...";
    homepage = http://sphinx-doc.org/;
    license = licenses.bsd0;
  };

}