pythonPackages.pdoc3: init at 0.9.1

Seems broken on 3.6, hence the disabled = pythonOlder "3.7".
This commit is contained in:
Spencer Baugh 2020-09-04 16:49:12 -04:00
parent 3081122b00
commit 3e28aad162
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, buildPythonPackage, fetchPypi
, pythonOlder
, Mako
, markdown
, setuptools-git
, setuptools_scm
}:
buildPythonPackage rec {
pname = "pdoc3";
version = "0.9.1";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "15482rvpg5r70gippj3nbl58x9plgmgvp0rg4xi4dpdqhma8v171";
};
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 ];
};
}

View file

@ -4392,6 +4392,8 @@ in {
pdfx = callPackage ../development/python-modules/pdfx { };
pdoc3 = callPackage ../development/python-modules/pdoc3 { };
pecan = callPackage ../development/python-modules/pecan { };
peewee = callPackage ../development/python-modules/peewee { };