From 52fd420877ffdfa66a53585579184cc6fc15b3a0 Mon Sep 17 00:00:00 2001 From: Vincent Prat Date: Mon, 19 Jun 2023 11:05:08 +0200 Subject: gnu: python-mypy-extensions: Update to 1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-check.scm (python-mypy-extensions): Update to 1.0.0 Signed-off-by: Ludovic Courtès --- gnu/packages/python-check.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/python-check.scm') diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 468a3397880..e566f3140aa 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1813,14 +1813,14 @@ side effects when unit testing.") (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") -- cgit v1.3 From e3f8e05c8057c04699957a378c9aff1e026274b3 Mon Sep 17 00:00:00 2001 From: Vincent Prat Date: Mon, 19 Jun 2023 11:08:27 +0200 Subject: gnu: python-mypy-extensions: Fix style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-check.scm (python-mypy-extensions): Fix style Signed-off-by: Ludovic Courtès --- gnu/packages/python-check.scm | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'gnu/packages/python-check.scm') diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index e566f3140aa..87e15b4560b 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1814,18 +1814,19 @@ side effects when unit testing.") (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))) -- cgit v1.3