1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_interface
5, sphinx
6}:
7
8buildPythonPackage rec {
9 pname = "repoze.sphinx.autointerface";
10 version = "1.0.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-SGvxQjpGlrkVPkiM750ybElv/Bbd6xSwyYh7RsYOKKE=";
15 };
16
17 propagatedBuildInputs = [ zope_interface sphinx ];
18
19 meta = with lib; {
20 homepage = "https://github.com/repoze/repoze.sphinx.autointerface";
21 description = "Auto-generate Sphinx API docs from Zope interfaces";
22 license = licenses.bsd0;
23 maintainers = with maintainers; [ domenkozar ];
24 };
25}