gnu: Add python-mypy-minimal.

* gnu/packages/python-check.scm (python-mypy-minimal): New variable.
This commit is contained in:
Maxim Cournoyer 2021-01-15 15:20:01 -05:00
parent 0054cad5ad
commit 98b4466d67
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1096,6 +1096,20 @@ (define-public python-mypy
;; mypyc/lib-rt/getargs.c
(license (list license:expat license:psfl))))
;;; This variant exists to break a cycle between python-pylama and python-isort.
(define-public python-mypy-minimal
(hidden-package
(package
(inherit python-mypy)
(name "python-mypy-minimal")
(arguments
`(#:tests? #f
#:phases (modify-phases %standard-phases
;; XXX: Fails with: "In procedure utime: No such file or
;; directory".
(delete 'ensure-no-mtimes-pre-1980))))
(native-inputs '()))))
(define-public python-robber
(package
(name "python-robber")