My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sphinx-inline-tabs/default.nix

34 lines
782 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, sphinx
}:
buildPythonPackage rec {
pname = "sphinx-inline-tabs";
version = "2022.01.02.beta11";
format = "flit";
src = fetchFromGitHub {
owner = "pradyunsg";
repo = "sphinx-inline-tabs";
rev = version;
sha256 = "sha256-k2nOidUk87EZbFsqQ7zr/4eHk+T7wUOYimjbllfneUM=";
};
propagatedBuildInputs = [
sphinx
];
# no tests, see https://github.com/pradyunsg/sphinx-inline-tabs/issues/6
doCheck = false;
pythonImportsCheck = [ "sphinx_inline_tabs" ];
meta = with lib; {
description = "Add inline tabbed content to your Sphinx documentation";
homepage = "https://github.com/pradyunsg/sphinx-inline-tabs";
license = licenses.mit;
maintainers = with maintainers; [ Luflosi ];
};
}