1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-05 15:22:36 +03:00
nixpkgs/pkgs/development/python-modules/repoze_sphinx_autointerface/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
585 B
Nix
Raw Normal View History

{ 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 ];
};
}