Commit 27f83dc6 authored by SkohTV's avatar SkohTV
Browse files

python3Packages.linuxdoc: init at 20240924

parent ce9129b9
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };