python3Packages.autodocsumm: init at 0.2.14
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
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 = [ ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user