Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-websupport / default.nix
blob7371d8abdea815024ff025b4c50d032b27ce4483
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flit-core
5 , jinja2
6 , sphinxcontrib-serializinghtml
7 }:
9 buildPythonPackage rec {
10   pname = "sphinxcontrib-websupport";
11   version = "1.2.7";
12   format = "pyproject";
14   src = fetchPypi {
15     pname = "sphinxcontrib_websupport";
16     inherit version;
17     hash = "sha256-4yKALr/V/nk2jv2GSuuHsGNWauYZEdzLJxTiikXtdWE=";
18   };
20   nativeBuildInputs = [
21     flit-core
22   ];
24   propagatedBuildInputs = [
25     jinja2
26     sphinxcontrib-serializinghtml
27   ];
29   # circular dependency on sphinx
30   dontCheckRuntimeDeps = true;
31   doCheck = false;
33   pythonNamespaces = [ "sphinxcontrib" ];
35   meta = {
36     description = "Sphinx API for Web Apps";
37     homepage = "http://sphinx-doc.org/";
38     license = lib.licenses.bsd2;
39   };