unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64162] [PATCH] gnu: python-mypy-extensions: Update to 1.0.0
@ 2023-06-19  9:16 Vincent Prat
  2023-06-25 21:38 ` bug#64162: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Vincent Prat @ 2023-06-19  9:16 UTC (permalink / raw)
  To: 64162

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



[-- Attachment #2: 0002-gnu-python-mypy-extensions-Fix-style.patch --]
[-- Type: text/x-patch, Size: 1692 bytes --]

From 4a68d9116a4b5a81f3eb7d31faa505a6cd1b813a Mon Sep 17 00:00:00 2001
From: Vincent Prat <vprat@deeplinks.com>
Date: Mon, 19 Jun 2023 11:08:27 +0200
Subject: [PATCH 2/2] gnu: python-mypy-extensions: Fix style

* gnu/packages/python-check.scm (python-mypy-extensions): Fix style
---
 gnu/packages/python-check.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index e566f3140a..87e15b4560 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1814,18 +1814,19 @@ (define-public python-mypy-extensions
   (package
     (name "python-mypy-extensions")
     (version "1.0.0")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "mypy_extensions" version))
-        (sha256
-         (base32
-          "10h7mwjjfbwxzq7jzaj1pnv9g6laa1k0ckgw72j44160bnazinvm"))))
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "mypy_extensions" version))
+              (sha256
+               (base32
+                "10h7mwjjfbwxzq7jzaj1pnv9g6laa1k0ckgw72j44160bnazinvm"))))
     (build-system python-build-system)
-    (arguments `(#:tests? #f)); no tests
+    (arguments
+     `(#:tests? #f)) ;no tests
     (home-page "https://github.com/python/mypy_extensions")
     (synopsis "Experimental extensions for MyPy")
-    (description "The @code{python-mypy-extensions} module defines
+    (description
+     "The @code{python-mypy-extensions} module defines
 experimental extensions to the standard @code{typing} module that are
 supported by the MyPy typechecker.")
     (license license:expat)))
-- 
2.39.2


[-- Attachment #3: 0001-gnu-python-mypy-extensions-Update-to-1.0.0.patch --]
[-- Type: text/x-patch, Size: 1194 bytes --]

From 403c73debcebba1d8013c3877c3bfd0c909d3c67 Mon Sep 17 00:00:00 2001
From: Vincent Prat <vprat@deeplinks.com>
Date: Mon, 19 Jun 2023 11:05:08 +0200
Subject: [PATCH 1/2] gnu: python-mypy-extensions: Update to 1.0.0

* gnu/packages/python-check.scm (python-mypy-extensions): Update to 1.0.0
---
 gnu/packages/python-check.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 468a339788..e566f3140a 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1813,14 +1813,14 @@ (define-public python-mockito
 (define-public python-mypy-extensions
   (package
     (name "python-mypy-extensions")
-    (version "0.4.3")
+    (version "1.0.0")
     (source
       (origin
         (method url-fetch)
         (uri (pypi-uri "mypy_extensions" version))
         (sha256
          (base32
-          "1a04qsk8hd1lqns8w1j7cr0vmvbhg450di5k1i16kqxkbf7q30id"))))
+          "10h7mwjjfbwxzq7jzaj1pnv9g6laa1k0ckgw72j44160bnazinvm"))))
     (build-system python-build-system)
     (arguments `(#:tests? #f)); no tests
     (home-page "https://github.com/python/mypy_extensions")
-- 
2.39.2


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

* bug#64162: [PATCH] gnu: python-mypy-extensions: Update to 1.0.0
  2023-06-19  9:16 [bug#64162] [PATCH] gnu: python-mypy-extensions: Update to 1.0.0 Vincent Prat
@ 2023-06-25 21:38 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2023-06-25 21:38 UTC (permalink / raw)
  To: Vincent Prat; +Cc: 64162-done

Hi,

Vincent Prat <vprat@deeplinks.com> skribis:

> From 4a68d9116a4b5a81f3eb7d31faa505a6cd1b813a Mon Sep 17 00:00:00 2001
> From: Vincent Prat <vprat@deeplinks.com>
> Date: Mon, 19 Jun 2023 11:08:27 +0200
> Subject: [PATCH 2/2] gnu: python-mypy-extensions: Fix style
>
> * gnu/packages/python-check.scm (python-mypy-extensions): Fix style

[...]

> From 403c73debcebba1d8013c3877c3bfd0c909d3c67 Mon Sep 17 00:00:00 2001
> From: Vincent Prat <vprat@deeplinks.com>
> Date: Mon, 19 Jun 2023 11:05:08 +0200
> Subject: [PATCH 1/2] gnu: python-mypy-extensions: Update to 1.0.0
>
> * gnu/packages/python-check.scm (python-mypy-extensions): Update to 1.0.0

Applied, thanks!

Ludo’.




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

end of thread, other threads:[~2023-06-25 21:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-19  9:16 [bug#64162] [PATCH] gnu: python-mypy-extensions: Update to 1.0.0 Vincent Prat
2023-06-25 21:38 ` bug#64162: " Ludovic Courtès

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).