summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-websupport/default.nix
blob: cb3d76e6a7414851487cbbe5f7e1eadedb79239b (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
{ lib
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "sphinxcontrib-websupport";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9de47f375baf1ea07cdb3436ff39d7a9c76042c10a769c52353ec46e4e8fc3b9";
  };

  propagatedBuildInputs = [ six ];

  doCheck = false;

  meta = {
    description = "Sphinx API for Web Apps";
    homepage = http://sphinx-doc.org/;
    license = lib.licenses.bsd2;
  };
}