nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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

authored by

Maxime Dénès and committed by
Vincent Laporte
48608f3e 59356a82

+20
+18
pkgs/development/python-modules/sphinx-navtree/default.nix
··· 1 + { lib, fetchPypi, buildPythonPackage, sphinx }: 2 + 3 + buildPythonPackage rec { 4 + version = "0.3.0"; 5 + pname = "sphinx-navtree"; 6 + src = fetchPypi { 7 + inherit pname version; 8 + sha256 = "1nqcsbqwr8ihk1fv534i0naag1qw04f7ibcgl2j8csvkh8q90b4p"; 9 + }; 10 + 11 + propagatedBuildInputs = [ sphinx ]; 12 + 13 + meta = { 14 + description = "Navigation tree customization for Sphinx"; 15 + homepage = "https://github.com/bintoro/sphinx-navtree"; 16 + license = lib.licenses.mit; 17 + }; 18 + }
+2
pkgs/top-level/python-packages.nix
··· 16326 16326 }; 16327 16327 }); 16328 16328 16329 + sphinx-navtree = callPackage ../development/python-modules/sphinx-navtree {}; 16330 + 16329 16331 sphinxcontrib_newsfeed = buildPythonPackage (rec { 16330 16332 name = "sphinxcontrib-newsfeed-${version}"; 16331 16333 version = "0.1.4";