all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Maxim Cournoyer <maxim.cournoyer@gmail.com>
To: jgart <jgart@dismail.de>
Cc: 56028-done@debbugs.gnu.org
Subject: bug#56028: [PATCH] gnu: Add python-pydantic-cli.
Date: Thu, 07 Jul 2022 17:12:02 -0400	[thread overview]
Message-ID: <8735fcwrtp.fsf@gmail.com> (raw)
In-Reply-To: <20220616214319.29956-1-jgart@dismail.de> (jgart@dismail.de's message of "Thu, 16 Jun 2022 16:43:19 -0500")

Hello,

jgart <jgart@dismail.de> writes:

> * gnu/packages/python-xyz.scm (python-pydantic-cli): New variable.
> ---
>  gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
> index 63a3eb2a80..394c54a986 100644
> --- a/gnu/packages/python-xyz.scm
> +++ b/gnu/packages/python-xyz.scm
> @@ -5018,6 +5018,30 @@ (define-public python-pydantic
>  errors when data is invalid.")
>      (license license:expat)))
>  
> +(define-public python-pydantic-cli
> +  (package
> +    (name "python-pydantic-cli")
> +    (version "4.3.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (pypi-uri "pydantic_cli" version))
> +        (sha256
> +          (base32 "1068zki5fvdm2lhqfqhjf325kmr8v5qiwadcl5b5dy84xzhs8hvf"))))
> +    (build-system python-build-system)
> +    (propagated-inputs
> +      (list python-pydantic))
> +    (native-inputs
> +      (list python-black
> +            python-mypy
> +            python-pytest))
> +    (home-page "http://github.com/mpkocher/pydantic-cli")
> +    (synopsis "Turn Pydantic defined Data Models into CLI Tools")
> +    (description
> +"Turn @code{python-pydantic} defined data models into CLI Tools and
> +enable loading values from JSON files.")
> +    (license license:expat)))
> +
>  (define-public python-pydocstyle
>    (package
>      (name "python-pydocstyle")

I've reworked the description a bit and fixed the indentation via W-q in
Emacs, like so:

--8<---------------cut here---------------start------------->8---
modified   gnu/packages/python-xyz.scm
@@ -5112,23 +5112,23 @@ (define-public python-pydantic-cli
     (name "python-pydantic-cli")
     (version "4.3.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "pydantic_cli" version))
-        (sha256
-          (base32 "1068zki5fvdm2lhqfqhjf325kmr8v5qiwadcl5b5dy84xzhs8hvf"))))
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pydantic_cli" version))
+       (sha256
+        (base32 "1068zki5fvdm2lhqfqhjf325kmr8v5qiwadcl5b5dy84xzhs8hvf"))))
     (build-system python-build-system)
     (propagated-inputs
-      (list python-pydantic))
+     (list python-pydantic))
     (native-inputs
-      (list python-black
-            python-mypy
-            python-pytest))
+     (list python-black
+           python-mypy
+           python-pytest))
     (home-page "http://github.com/mpkocher/pydantic-cli")
-    (synopsis "Turn Pydantic defined Data Models into CLI Tools")
+    (synopsis "Turn Pydantic defined data models into CLI tools")
     (description
-"Turn @code{python-pydantic} defined data models into CLI Tools and
-enable loading values from JSON files.")
+     "@code{python-pydantic} enables specifying @acronym{CLI, Command Line
+Interfaces} via data models provided in the JSON format.")
     (license license:expat)))
 
 (define-public python-pydocstyle
--8<---------------cut here---------------end--------------->8---

Upon building it, I noticed that there appear to be no tests run,
despite providing pytest as a native input.

So I've fetched from git instead (with a comment explaining why), and
saw: Ran 35 tests in 0.094s; good!

I've also adjusted the home page URL to use HTTPS instead of HTTP.

Pushed as 08efb331d0.

Thanks!

Maxim




      reply	other threads:[~2022-07-07 21:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-16 21:43 [bug#56028] [PATCH] gnu: Add python-pydantic-cli jgart via Guix-patches via
2022-07-07 21:12 ` Maxim Cournoyer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8735fcwrtp.fsf@gmail.com \
    --to=maxim.cournoyer@gmail.com \
    --cc=56028-done@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.