about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix
blob: 04b19aef8bf67c58fbdc88669d940897d169a014 (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-serializinghtml";
  version = "1.1.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c0efb33f8052c04fd7a26c0a07f1678e8512e0faec19f4aa8f2473a8b81d5227";
  };


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

  meta = with stdenv.lib; {
    description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle).";
    homepage = "http://sphinx-doc.org/";
    license = licenses.bsd0;
  };

}