depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxcontrib-fulltoc/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

30 lines
915 B
Nix

{ lib, buildPythonPackage, fetchPypi, pythonOlder, sphinx, pbr }:
buildPythonPackage rec {
pname = "sphinxcontrib-fulltoc";
version = "1.2.0";
# pkgutil namespaces are broken in nixpkgs (because they can't scan multiple
# directories). But python2 is EOL, so not supporting it, should be ok.
disabled = pythonOlder "3";
src = fetchPypi {
inherit pname version;
sha256 = "1nbwflv9szyh37yr075xhck8b4gg2c7g3sa38mfi7wv7qhpxcif8";
};
nativeBuildInputs = [ pbr ];
propagatedBuildInputs = [ sphinx ];
# There are no unit tests
doCheck = false;
# Ensure package importing works
pythonImportsCheck = [ "sphinxcontrib.fulltoc" ];
meta = with lib; {
description = "Include a full table of contents in your Sphinx HTML sidebar";
homepage = "https://sphinxcontrib-fulltoc.readthedocs.org/";
license = licenses.asl20;
maintainers = with maintainers; [ jluttine ];
};
}