60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
48 lines
922 B
Nix
48 lines
922 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, flit-core
|
|
, docutils
|
|
, sphinx
|
|
, requests
|
|
, jinja2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-confluencebuilder";
|
|
version = "2.4.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
pname = "sphinxcontrib_confluencebuilder";
|
|
inherit version;
|
|
hash = "sha256-q3+GwMVWMRu4eWwbdXcbPQzpBhBXcZEMFTpbEO+teLk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
docutils
|
|
sphinx
|
|
requests
|
|
jinja2
|
|
];
|
|
|
|
# Tests are disabled due to a circular dependency on Sphinx
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"sphinxcontrib.confluencebuilder"
|
|
];
|
|
|
|
pythonNamespaces = [ "sphinxcontrib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Confluence builder for sphinx";
|
|
homepage = "https://github.com/sphinx-contrib/confluencebuilder";
|
|
license = licenses.bsd1;
|
|
maintainers = with maintainers; [ graysonhead ];
|
|
};
|
|
}
|