diff options
Diffstat (limited to 'gnu/packages/check.scm')
| -rw-r--r-- | gnu/packages/check.scm | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index a625c5bdef9..a11991f026b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm | |||
| @@ -2875,19 +2875,27 @@ a Pytest test execution.") | |||
| 2875 | (define-public python-pytest-mypy-plugins | 2875 | (define-public python-pytest-mypy-plugins |
| 2876 | (package | 2876 | (package |
| 2877 | (name "python-pytest-mypy-plugins") | 2877 | (name "python-pytest-mypy-plugins") |
| 2878 | (version "3.1.2") | 2878 | (version "4.0.0") |
| 2879 | (source | 2879 | (source |
| 2880 | (origin | 2880 | (origin |
| 2881 | (method url-fetch) | 2881 | (method git-fetch) |
| 2882 | (uri (pypi-uri "pytest-mypy-plugins" version)) | 2882 | (uri (git-reference |
| 2883 | (url "https://github.com/TypedDjango/pytest-mypy-plugins") | ||
| 2884 | (commit version))) | ||
| 2885 | (file-name (git-file-name name version)) | ||
| 2883 | (sha256 | 2886 | (sha256 |
| 2884 | (base32 "1gpynypn13032by633dr2zhng54v2gl09kwgp3ysc4wpwl09pyhl")))) | 2887 | (base32 "05vnv8m4qjrpyxw7f17wng6pnicvaps6vf8c6yn1a8lj10fkwazn")))) |
| 2885 | (build-system pyproject-build-system) | 2888 | (build-system pyproject-build-system) |
| 2886 | (arguments | 2889 | (arguments |
| 2887 | (list | 2890 | (list |
| 2888 | #:test-flags | 2891 | #:test-flags |
| 2889 | #~(list "-k" (string-join | 2892 | #~(list "-k" (string-join |
| 2890 | (list "not reveal_type_extension_is_loaded" | 2893 | (list "not reveal_type_extension_is_loaded" |
| 2894 | ;; Unsupported operand types for / ("str" and "int") | ||
| 2895 | "test_no_silence_site_packages_only" | ||
| 2896 | "test_no_silence_site_packages_and_modify_pythonpath" | ||
| 2897 | ;; subprocess.CalledProcessError | ||
| 2898 | ;; pytest not found? | ||
| 2891 | "test_pyproject_toml" | 2899 | "test_pyproject_toml" |
| 2892 | "test_ini_files") | 2900 | "test_ini_files") |
| 2893 | " and not ")) | 2901 | " and not ")) |
| @@ -2902,8 +2910,7 @@ a Pytest test execution.") | |||
| 2902 | (with-directory-excursion "/tmp" | 2910 | (with-directory-excursion "/tmp" |
| 2903 | (apply invoke "pytest" "-v" test-flags)))))))) | 2911 | (apply invoke "pytest" "-v" test-flags)))))))) |
| 2904 | (native-inputs | 2912 | (native-inputs |
| 2905 | (list python-setuptools | 2913 | (list python-setuptools)) |
| 2906 | python-wheel)) | ||
| 2907 | (propagated-inputs | 2914 | (propagated-inputs |
| 2908 | (list python-decorator | 2915 | (list python-decorator |
| 2909 | python-jinja2 | 2916 | python-jinja2 |
