mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.sphinx-navtree: init at 0.3.0 (#36442)
This commit is contained in:
parent
59356a8260
commit
48608f3e16
2 changed files with 20 additions and 0 deletions
18
pkgs/development/python-modules/sphinx-navtree/default.nix
Normal file
18
pkgs/development/python-modules/sphinx-navtree/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue