mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 09:13:56 +00:00
36 lines
657 B
Nix
36 lines
657 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
versioneer,
|
|
sphinx,
|
|
lib,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "autodocsumm";
|
|
version = "0.2.15";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "autodocsumm";
|
|
hash = "sha256-6vQx56WjnkGiFTERc8i5XoOFkFnfHM87ecZL89VYKzw=";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|