gnu: python-mypy-extensions: Fix style
* gnu/packages/python-check.scm (python-mypy-extensions): Fix style Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
52fd420877
commit
e3f8e05c80
1 changed files with 10 additions and 9 deletions
|
@ -1814,18 +1814,19 @@ side effects when unit testing.")
|
||||||
(package
|
(package
|
||||||
(name "python-mypy-extensions")
|
(name "python-mypy-extensions")
|
||||||
(version "1.0.0")
|
(version "1.0.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (pypi-uri "mypy_extensions" version))
|
||||||
(uri (pypi-uri "mypy_extensions" version))
|
(sha256
|
||||||
(sha256
|
(base32
|
||||||
(base32
|
"10h7mwjjfbwxzq7jzaj1pnv9g6laa1k0ckgw72j44160bnazinvm"))))
|
||||||
"10h7mwjjfbwxzq7jzaj1pnv9g6laa1k0ckgw72j44160bnazinvm"))))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments `(#:tests? #f)); no tests
|
(arguments
|
||||||
|
`(#:tests? #f)) ;no tests
|
||||||
(home-page "https://github.com/python/mypy_extensions")
|
(home-page "https://github.com/python/mypy_extensions")
|
||||||
(synopsis "Experimental extensions for MyPy")
|
(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
|
experimental extensions to the standard @code{typing} module that are
|
||||||
supported by the MyPy typechecker.")
|
supported by the MyPy typechecker.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
Reference in a new issue