mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-mypy: Update to 1.13.0.
* gnu/packages/python-check.scm (python-mypy): Update to 1.13.0. [native-inputs]: Add nss-certs-for-test, python-hatchling, python-setuptools, and python-wheel. (python-mypy-minimal)[arguments]<phases>: Keep all phases. [native-inputs]: Add python-setuptools, and python-wheel. Change-Id: I45c35e361430a65a649f90e6aab7c2cff7218164
This commit is contained in:
parent
f881b16ab7
commit
3355db5729
1 changed files with 28 additions and 18 deletions
|
@ -43,6 +43,7 @@
|
||||||
#:use-module (gnu packages admin)
|
#:use-module (gnu packages admin)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
|
#:use-module (gnu packages certs)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages django)
|
#:use-module (gnu packages django)
|
||||||
#:use-module (gnu packages docker)
|
#:use-module (gnu packages docker)
|
||||||
|
@ -2228,32 +2229,43 @@ supported by the MyPy typechecker.")
|
||||||
(define-public python-mypy
|
(define-public python-mypy
|
||||||
(package
|
(package
|
||||||
(name "python-mypy")
|
(name "python-mypy")
|
||||||
(version "1.4.1")
|
(version "1.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "mypy" version))
|
(uri (pypi-uri "mypy" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06svfmqbnb45pydy8lcrr12wqhhla5dl888w0g4f3wm1ismxkg4v"))))
|
"0pl3plw815824z5gsncnjg3yn2v5wz0gqp20wdrncgmzdwdsd482"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
;; It tries to download hatchling and install aditional test
|
||||||
(replace 'check
|
;; dependencies.
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
#:test-flags #~(list "--ignore=mypy/test/testpep561.py")
|
||||||
(when tests?
|
#:phases
|
||||||
(invoke "pytest" "mypyc")))))))
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'set-home
|
||||||
|
(lambda _
|
||||||
|
;; The directory '/homeless-shelter/.cache/pip' or its parent
|
||||||
|
;; directory is not owned or is not writable by the current
|
||||||
|
;; user.
|
||||||
|
(setenv "HOME" "/tmp"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-attrs
|
(list nss-certs-for-test
|
||||||
|
python-attrs
|
||||||
python-lxml
|
python-lxml
|
||||||
python-psutil
|
python-psutil
|
||||||
python-pytest
|
python-pytest
|
||||||
python-pytest-forked
|
python-pytest-forked
|
||||||
python-pytest-xdist
|
python-pytest-xdist
|
||||||
python-virtualenv))
|
python-setuptools
|
||||||
|
python-virtualenv
|
||||||
|
python-wheel))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-mypy-extensions python-tomli python-typing-extensions))
|
(list python-mypy-extensions
|
||||||
|
python-tomli
|
||||||
|
python-typing-extensions))
|
||||||
(home-page "https://www.mypy-lang.org/")
|
(home-page "https://www.mypy-lang.org/")
|
||||||
(synopsis "Static type checker for Python")
|
(synopsis "Static type checker for Python")
|
||||||
(description "Mypy is an optional static type checker for Python that aims
|
(description "Mypy is an optional static type checker for Python that aims
|
||||||
|
@ -2273,12 +2285,10 @@ them using any Python VM with basically no runtime overhead.")
|
||||||
(inherit python-mypy)
|
(inherit python-mypy)
|
||||||
(name "python-mypy-minimal")
|
(name "python-mypy-minimal")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f))
|
||||||
#:phases (modify-phases %standard-phases
|
(native-inputs
|
||||||
;; XXX: Fails with: "In procedure utime: No such file or
|
(list python-setuptools
|
||||||
;; directory".
|
python-wheel)))))
|
||||||
(delete 'ensure-no-mtimes-pre-1980))))
|
|
||||||
(native-inputs '()))))
|
|
||||||
|
|
||||||
(define-public python-nptyping
|
(define-public python-nptyping
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue