nixpkgs/pkgs/development/python-modules/repoze_sphinx_autointerface/default.nix

26 lines
585 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, zope_interface
, sphinx
}:
buildPythonPackage rec {
pname = "repoze.sphinx.autointerface";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-SGvxQjpGlrkVPkiM750ybElv/Bbd6xSwyYh7RsYOKKE=";
};
propagatedBuildInputs = [ zope_interface sphinx ];
meta = with lib; {
homepage = "https://github.com/repoze/repoze.sphinx.autointerface";
description = "Auto-generate Sphinx API docs from Zope interfaces";
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}