Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / sphinx-navtree / default.nix
blobae56a9fdce112df88f2dcaf11abb39de3a30de79
1 { lib, fetchPypi, buildPythonPackage, sphinx }:
3 buildPythonPackage rec {
4   version = "0.3.0";
5   pname = "sphinx-navtree";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "1nqcsbqwr8ihk1fv534i0naag1qw04f7ibcgl2j8csvkh8q90b4p";
9   };
11   propagatedBuildInputs = [ sphinx ];
13   meta = {
14     description = "Navigation tree customization for Sphinx";
15     homepage = "https://github.com/bintoro/sphinx-navtree";
16     license = lib.licenses.mit;
17     # not compatible with sphinx 3.3, not updated since 2016
18     broken = true;
19   };