mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
0215034f25
when they already rely on SRI hashes.
26 lines
583 B
Nix
26 lines
583 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_interface
|
|
, sphinx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "repoze.sphinx.autointerface";
|
|
version = "1.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
};
|
|
}
|