mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 10:14:09 +00:00
26 lines
585 B
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 ];
|
|
};
|
|
}
|