python3Packages.linuxdoc: init at 20240924
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user