depot/third_party/nixpkgs/pkgs/development/python-modules/sphinx-codeautolink/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
# documentation build dependencies
sphinxHook,
sphinx-rtd-theme,
matplotlib,
ipython,
# runtime dependencies
sphinx,
beautifulsoup4,
# check dependencies
pytest,
}:
buildPythonPackage rec {
pname = "sphinx-codeautolink";
version = "0.15.2";
format = "pyproject";
outputs = [
"out"
"doc"
];
src = fetchFromGitHub {
owner = "felix-hilden";
repo = "sphinx-codeautolink";
rev = "refs/tags/v${version}";
hash = "sha256-h1lteF5a3ga1VlhXCz2biydli3sg3ktPbz0O5n0eeFI=";
};
nativeBuildInputs = [
setuptools
sphinxHook
sphinx-rtd-theme
matplotlib
ipython
];
sphinxRoot = "docs/src";
propagatedBuildInputs = [
sphinx
beautifulsoup4
];
nativeCheckInputs = [ pytest ];
pythonImportsCheck = [ "sphinx_codeautolink" ];
meta = with lib; {
description = "Sphinx extension that makes code examples clickable";
homepage = "https://github.com/felix-hilden/sphinx-codeautolink";
license = licenses.mit;
maintainers = with maintainers; [ kaction ];
};
}