unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#45935] [PATCH] gnu: Add python-typer.
@ 2021-01-17 13:45 Tanguy Le Carrour
  2021-01-29 11:08 ` bug#45935: " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Tanguy Le Carrour @ 2021-01-17 13:45 UTC (permalink / raw)
  To: 45935; +Cc: Tanguy Le Carrour

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d08e23936c..12052e7e86 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18172,6 +18172,61 @@ based on the CPython 2.7 and 3.7 parsers.")
                    license:asl2.0
                    license:expat))))    ;ast27/Parser/spark.py
 
+(define-public python-typer
+  (package
+    (name "python-typer")
+    (version "0.3.2")
+    (source
+     (origin
+       ;; Building `python-typer` from the git repository requires the `flit-core`
+       ;; Python package that is not installed by `python-flit`.
+       (method url-fetch)
+       (uri (pypi-uri "typer" version))
+       (sha256
+        (base32 "00v3h63dq8yxahp9vg3yb9r27l2niwv8gv0dbds9dzrc298dfmal"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'disable-failing-tests
+           (lambda _
+             (substitute* "tests/test_completion/test_completion.py"
+               (("def test_show_completion")
+                "def _test_show_completion")
+               (("def test_install_completion")
+                "def _test_install_completion"))
+             (substitute* "tests/test_completion/test_completion_install.py"
+               (("def test_completion_install_bash")
+                "def _test_completion_install_bash")
+               (("def test_completion_install_zsh")
+                "def _test_completion_install_zsh")
+               (("def test_completion_install_fish")
+                "def _test_completion_install_fish")
+               (("def test_completion_install_powershell")
+                "def _test_completion_install_powershell"))
+             #t))
+         (replace 'check
+           (lambda _
+             (setenv "PYTHONPATH"
+                     (string-append (getcwd) ":"
+                                    (getenv "PYTHONPATH")))
+             (invoke "python" "-m" "pytest" "tests/")
+             #t)))))
+    (propagated-inputs
+     `(("python-click" ,python-click)))
+    (native-inputs
+     `(("python-coverage" ,python-coverage)
+       ("python-pytest" ,python-pytest)
+       ("python-shellingham" ,python-shellingham)))
+    (home-page "https://github.com/tiangolo/typer")
+    (synopsis
+      "Typer builds CLI based on Python type hints")
+    (description
+      "Typer is a library for building CLI applications.  It's based on
+Python 3.6+ type hints.")
+    ;; MIT license
+    (license license:expat)))
+
 (define-public python-typing
   (package
     (name "python-typing")
-- 
2.30.0





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

* bug#45935: [PATCH] gnu: Add python-typer.
  2021-01-17 13:45 [bug#45935] [PATCH] gnu: Add python-typer Tanguy Le Carrour
@ 2021-01-29 11:08 ` Ludovic Courtès
  2021-01-29 12:35   ` [bug#45935] " Tanguy LE CARROUR
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2021-01-29 11:08 UTC (permalink / raw)
  To: Tanguy Le Carrour; +Cc: 45935-done

Tanguy Le Carrour <tanguy@bioneland.org> skribis:

> * gnu/packages/python-xyz.scm (python-typer): New variable.

Applied, thanks!

Ludo’.




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

* [bug#45935] [PATCH] gnu: Add python-typer.
  2021-01-29 11:08 ` bug#45935: " Ludovic Courtès
@ 2021-01-29 12:35   ` Tanguy LE CARROUR
  0 siblings, 0 replies; 3+ messages in thread
From: Tanguy LE CARROUR @ 2021-01-29 12:35 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 45935-done

Hi Ludo'

Excerpts from Ludovic Courtès's message of January 29, 2021 12:08 pm:
> Tanguy Le Carrour <tanguy@bioneland.org> skribis:
> 
>> * gnu/packages/python-xyz.scm (python-typer): New variable.
> 
> Applied, thanks!

Thanks!

-- 
Tanguy




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

end of thread, other threads:[~2021-01-29 12:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-17 13:45 [bug#45935] [PATCH] gnu: Add python-typer Tanguy Le Carrour
2021-01-29 11:08 ` bug#45935: " Ludovic Courtès
2021-01-29 12:35   ` [bug#45935] " Tanguy LE CARROUR

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).