pythonPackages.sphinx-navtree: init at 0.3.0 (#36442)

This commit is contained in:
Maxime Dénès 2018-03-08 02:13:04 -08:00 committed by Vincent Laporte
parent 59356a8260
commit 48608f3e16
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ 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;
};
}

View file

@ -16326,6 +16326,8 @@ in {
};
});
sphinx-navtree = callPackage ../development/python-modules/sphinx-navtree {};
sphinxcontrib_newsfeed = buildPythonPackage (rec {
name = "sphinxcontrib-newsfeed-${version}";
version = "0.1.4";