e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, setuptools
|
|
, pytestCheckHook
|
|
, zope-interface
|
|
, zope-testrunner
|
|
, sphinx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "repoze-sphinx-autointerface";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
pname = "repoze.sphinx.autointerface";
|
|
inherit version;
|
|
hash = "sha256-SGvxQjpGlrkVPkiM750ybElv/Bbd6xSwyYh7RsYOKKE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
zope-interface
|
|
sphinx
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
zope-testrunner
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"repoze.sphinx.autointerface"
|
|
];
|
|
|
|
pythonNamespaces = [
|
|
"repoze"
|
|
"repoze.sphinx"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/repoze/repoze.sphinx.autointerface";
|
|
description = "Auto-generate Sphinx API docs from Zope interfaces";
|
|
changelog = "https://github.com/repoze/repoze.sphinx.autointerface/blob/${version}/CHANGES.rst";
|
|
license = licenses.bsd0;
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
# https://github.com/repoze/repoze.sphinx.autointerface/issues/21
|
|
broken = versionAtLeast sphinx.version "7.2";
|
|
};
|
|
}
|