python3Packages.linuxdoc: init at 20240924

This commit is contained in:
SkohTV
2026-02-03 19:39:43 -05:00
parent ce9129b9d7
commit 27f83dc6ce
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
fspath,
docutils,
sphinx,
}:
buildPythonPackage (finalAttrs: {
pname = "linuxdoc";
version = "20240924";
pyproject = true;
src = fetchFromGitHub {
owner = "return42";
repo = "linuxdoc";
tag = finalAttrs.version;
hash = "sha256-UOOIl+HWI7bK6iWrADTgrGvom++178yPYmyI+qTwVlg=";
};
build-system = [
setuptools
];
dependencies = [
fspath
docutils
sphinx
];
pythonImportsCheck = [ "linuxdoc" ];
meta = {
description = "Sphinx-doc extensions for sophisticated C developer";
homepage = "https://github.com/return42/linuxdoc";
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ skohtv ];
};
})
+2
View File
@@ -8838,6 +8838,8 @@ self: super: with self; {
linode-metadata = callPackage ../development/python-modules/linode-metadata { };
linuxdoc = callPackage ../development/python-modules/linuxdoc { };
linuxfd = callPackage ../development/python-modules/linuxfd { };
linuxpy = callPackage ../development/python-modules/linuxpy { };