My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sphinx-navtree/default.nix

20 lines
536 B

{ lib, fetchPypi, buildPythonPackage, sphinx }:
buildPythonPackage rec {
version = "0.3.0";
pname = "sphinx-navtree";
src = fetchPypi {
inherit pname version;
sha256 = "1nqcsbqwr8ihk1fv534i0naag1qw04f7ibcgl2j8csvkh8q90b4p";
};
propagatedBuildInputs = [ sphinx ];
meta = {
description = "Navigation tree customization for Sphinx";
homepage = "https://github.com/bintoro/sphinx-navtree";
license = lib.licenses.mit;
# not compatible with sphinx 3.3, not updated since 2016
broken = true;
};
}