me
/
guix
Archived
1
0
Fork 0

gnu: Add python-mypy-minimal.

* gnu/packages/python-check.scm (python-mypy-minimal): New variable.
master
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
1 changed files with 14 additions and 0 deletions

View File

@ -1096,6 +1096,20 @@ any Python VM with basically no runtime overhead.")
;; 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")