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

29 lines
684 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
, pythonOlder
, Mako
, markdown
, setuptools-git
, setuptools_scm
}:
buildPythonPackage rec {
pname = "pdoc3";
2020-11-29 14:04:35 +00:00
version = "0.9.2";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:35 +00:00
sha256 = "9df5d931f25f353c69c46819a3bd03ef96dd286f2a70bb1b93a23a781f91faa1";
};
nativeBuildInputs = [ setuptools-git setuptools_scm ];
propagatedBuildInputs = [ Mako markdown ];
meta = with lib; {
description = "Auto-generate API documentation for Python projects.";
homepage = "https://pdoc3.github.io/pdoc/";
license = with licenses; [ agpl3Plus ];
maintainers = with maintainers; [ catern ];
};
}