mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
19 lines
456 B
Nix
19 lines
456 B
Nix
{ 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;
|
|
};
|
|
}
|