42 lines
849 B
Nix
42 lines
849 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pbr,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-apidoc";
|
|
version = "0.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "sphinxcontrib_apidoc";
|
|
inherit version;
|
|
hash = "sha256-MpuYENZpiPSOEnpr0YzI77vRzSC43rRpGjVzivSa2I0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# break infite recursion, remove pytest 4 requirement
|
|
rm test-requirements.txt requirements.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pbr
|
|
setuptools
|
|
];
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
doCheck = false;
|
|
|
|
pythonNamespaces = [ "sphinxcontrib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Sphinx extension for running sphinx-apidoc on each build";
|
|
homepage = "https://github.com/sphinx-contrib/apidoc";
|
|
license = licenses.bsd2;
|
|
teams = [ teams.openstack ];
|
|
};
|
|
}
|