all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#62373] [PATCH] gnu: Add python-pdoc.
@ 2023-03-22  9:50 Ontje.Luensdorf
  2023-06-15 22:09 ` bug#62373: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Ontje.Luensdorf @ 2023-03-22  9:50 UTC (permalink / raw)
  To: 62373

[-- Attachment #1: Type: text/plain, Size: 104 bytes --]

Hi there,


I've packaged pdoc, a documentation system for python.

Thanks & best regards,
Ontje

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-python-pdoc.patch --]
[-- Type: text/x-diff; name="0001-gnu-Add-python-pdoc.patch", Size: 2536 bytes --]

From 8a6adf3add637fd3d04fa2dee3b413f5dd65fd06 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ontje=20L=C3=BCnsdorf?= <ontje.luensdorf@dlr.de>
Date: Wed, 22 Mar 2023 09:42:09 +0100
Subject: [PATCH] gnu: Add python-pdoc.

* gnu/packages/python-xyz.scm (python-pdoc): New variable.
---
 gnu/packages/python-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f0f003cc8b..817e3f02d0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -135,6 +135,7 @@
 ;;; Copyright © 2023 Gabriel Wicki <gabriel@erlikon.ch>
 ;;; Copyright © 2023 Amade Nemes <nemesamade@gmail.com>
 ;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu>
+;;; Copyright © 2023 Ontje Lünsdorf <ontje.luensdorf@dlr.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -915,6 +916,40 @@ (define-public python-mkdocs-markdownextradata-plugin
 variables into the markdown template")
     (license license:expat)))
 
+(define-public python-pdoc
+  (package
+    (name "python-pdoc")
+    (version "13.0.1")
+    (source
+      (origin
+        (method git-fetch)
+        (uri
+         (git-reference
+          (url "https://github.com/mitmproxy/pdoc")
+          (commit (string-append "v" version))))
+        (sha256
+          (base32
+           "0gxkw607nrd67ck4w8jri9vfrm5g60qvp8b134m8zkiphbxjnx0l"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-pytest python-jinja2 python-pygments))
+    (arguments
+     (list
+      ;; Some tests fail, presumably because of slight version mismatches of
+      ;; the dependencies.
+      #:test-flags
+      '(list "-k" (string-append "not test_var_with_raising_repr and "
+                                 "not test_smoke[mock] and "
+                                 "not test_snapshots[html"))))
+    (home-page "https://pdoc.dev/")
+    (synopsis "API Documentation for Python Projects")
+    (description "pdoc auto-generates API documentation that follows your
+project's Python module hierarchy.  It requires no configuration, has
+first-class support for type annotations, cross-links between identifiers,
+comes with an integrated live-reloading web server, uses customizable HTML
+templates, understands numpydoc and Google-style docstrings, and is
+permissively licensed.")
+    (license license:unlicense)))
+
 (define-public python-py4j
   (package
     (name "python-py4j")
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#62373: [PATCH] gnu: Add python-pdoc.
  2023-03-22  9:50 [bug#62373] [PATCH] gnu: Add python-pdoc Ontje.Luensdorf
@ 2023-06-15 22:09 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2023-06-15 22:09 UTC (permalink / raw)
  To: Ontje.Luensdorf; +Cc: 62373-done

[-- Attachment #1: Type: text/plain, Size: 433 bytes --]

Hi Ontje,

<Ontje.Luensdorf@dlr.de> skribis:

> From 8a6adf3add637fd3d04fa2dee3b413f5dd65fd06 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Ontje=20L=C3=BCnsdorf?= <ontje.luensdorf@dlr.de>
> Date: Wed, 22 Mar 2023 09:42:09 +0100
> Subject: [PATCH] gnu: Add python-pdoc.
>
> * gnu/packages/python-xyz.scm (python-pdoc): New variable.

Sorry for the long delay.  Applied with the minor changes below.

Thanks!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1964 bytes --]

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0c98701146..cdffc3ad67 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1070,16 +1070,15 @@ (define-public python-pdoc
   (package
     (name "python-pdoc")
     (version "13.0.1")
-    (source
-      (origin
-        (method git-fetch)
-        (uri
-         (git-reference
-          (url "https://github.com/mitmproxy/pdoc")
-          (commit (string-append "v" version))))
-        (sha256
-          (base32
-           "0gxkw607nrd67ck4w8jri9vfrm5g60qvp8b134m8zkiphbxjnx0l"))))
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/mitmproxy/pdoc")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0gxkw607nrd67ck4w8jri9vfrm5g60qvp8b134m8zkiphbxjnx0l"))))
     (build-system pyproject-build-system)
     (native-inputs (list python-pytest python-jinja2 python-pygments))
     (arguments
@@ -1091,13 +1090,12 @@ (define-public python-pdoc
                                  "not test_smoke[mock] and "
                                  "not test_snapshots[html"))))
     (home-page "https://pdoc.dev/")
-    (synopsis "API Documentation for Python Projects")
+    (synopsis "API documentation for Python projects")
     (description "pdoc auto-generates API documentation that follows your
 project's Python module hierarchy.  It requires no configuration, has
 first-class support for type annotations, cross-links between identifiers,
 comes with an integrated live-reloading web server, uses customizable HTML
-templates, understands numpydoc and Google-style docstrings, and is
-permissively licensed.")
+templates, understands numpydoc and Google-style docstrings.")
     (license license:unlicense)))
 
 (define-public python-py4j

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-15 22:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-22  9:50 [bug#62373] [PATCH] gnu: Add python-pdoc Ontje.Luensdorf
2023-06-15 22:09 ` bug#62373: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.