Unverified Commit de00cd00 authored by provokateurin's avatar provokateurin
Browse files

python3Packages.autodocsumm: init at 0.2.14

parent 0899bab4
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchPypi,
  setuptools,
  versioneer,
  sphinx,
  lib,
}:
buildPythonPackage rec {
  pname = "autodocsumm";
  version = "0.2.14";
  pyproject = true;

  src = fetchPypi {
    inherit version;
    pname = "autodocsumm";
    hash = "sha256-KDmp1PrMPE7M0wbAhpVUCREEK0bur83DID5tC6tAvHc=";
  };

  build-system = [ setuptools ];

  dependencies = [
    versioneer
    sphinx
  ];

  pythonImportsCheck = [ "autodocsumm" ];

  meta = {
    description = "Extended sphinx autodoc including automatic autosummaries";
    homepage = "https://github.com/Chilipp/autodocsumm";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1180,6 +1180,8 @@ self: super: with self; {
  autocommand = callPackage ../development/python-modules/autocommand { };
  autodocsumm = callPackage ../development/python-modules/autodocsumm { };
  autofaiss = callPackage ../development/python-modules/autofaiss { };
  autoflake = callPackage ../development/python-modules/autoflake { };