2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-16 13:06:17 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_interface
|
|
|
|
, sphinx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "repoze.sphinx.autointerface";
|
2022-07-16 12:59:34 +02:00
|
|
|
version = "1.0.0";
|
2018-10-16 13:06:17 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-07-16 12:59:34 +02:00
|
|
|
sha256 = "sha256-SGvxQjpGlrkVPkiM750ybElv/Bbd6xSwyYh7RsYOKKE=";
|
2018-10-16 13:06:17 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ zope_interface sphinx ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/repoze/repoze.sphinx.autointerface";
|
2018-10-16 13:06:17 -04:00
|
|
|
description = "Auto-generate Sphinx API docs from Zope interfaces";
|
|
|
|
license = licenses.bsd0;
|
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
|
|
};
|
|
|
|
}
|