gnu: Add python-beartype.

* gnu/packages/python-check.scm (python-beartype): New variable.
This commit is contained in:
Maxim Cournoyer 2022-04-21 23:14:29 -04:00
parent ea20078ccb
commit 50b620f119
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -70,6 +70,38 @@ (define-public python-tappy
data in a standard way.")
(license license:bsd-3)))
(define-public python-beartype
(package
(name "python-beartype")
(version "0.10.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "beartype" version))
(sha256
(base32 "0amzckgw9c93bl4jf0q6322j9wyyf3i8vl03yixfkrpllzv6kv14"))))
(build-system python-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv" "beartype_test"
;; These tests rely on git through the
;; "get_main_readme_file" helper.
"-k"
(string-append "not test_doc_readme "
"and not test_sphinx "
"and not test_pep561_mypy"))))))))
(native-inputs
(list python-pytest))
(home-page "https://github.com/beartype/beartype")
(synopsis "Fast runtime type checking for Python")
(description "Beartype aims to be a very fast runtime type checking tool
written in pure Python.")
(license license:expat)))
(define-public python-pytest-click
(package
(name "python-pytest-click")