diff options
author | Munyoki Kilyungi | 2023-09-25 13:33:32 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-09-25 13:33:32 +0300 |
commit | 5676b7bb6c6d80a9364c61260aa7aaa2b4baf21e (patch) | |
tree | 55d3b7ca3781f4b27d60bc0778aa34c6da89ced8 /gn | |
parent | 98eb79fc72ab4b6620eb13b7c021ce4975bc2a71 (diff) | |
download | guix-bioinformatics-5676b7bb6c6d80a9364c61260aa7aaa2b4baf21e.tar.gz |
Delete python-mypy-0.981.
* gn/packages/python.scm (python-mypy-0.981): Delete it.
* gn/packages/genenetwork.scm (genenetwork3)[native-inputs]: Replace
python-mypy-0.981 with upstream's python-mypy.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/genenetwork.scm | 2 | ||||
-rw-r--r-- | gn/packages/python.scm | 25 |
2 files changed, 2 insertions, 25 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 5cd663e..4ce207d 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -129,7 +129,7 @@ (list python-click)) (native-inputs `(("python-hypothesis" ,python-hypothesis) - ("python-mypy" ,python-mypy-0.981) + ("python-mypy" ,python-mypy) ("python-mypy-extensions" ,python-mypy-extensions) ("python-pylint" ,python-pylint) ("python-pytest" ,python-pytest) diff --git a/gn/packages/python.scm b/gn/packages/python.scm index d728ef3..020a6a9 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1899,27 +1899,4 @@ concepts.") (base32 "1al030ix0w63hr4s3mqry6s0mlqdj8p242pdqks06br7c25nx3yj")))) (propagated-inputs (modify-inputs (package-propagated-inputs yoyo-migrations) - (append python-importlib-metadata))))) - -(define-public python-mypy-0.981 - (package - (inherit python-mypy) - (name "python-mypy") - (version "0.981") - (source - (origin - ;; Because of https://github.com/python/mypy/issues/9584, the - ;; mypyc/analysis directory is missing in the PyPI archive, leading to - ;; test failures. - (method git-fetch) - (uri (git-reference - (url "https://github.com/python/mypy") - (commit (string-append "v" version)) - ;; Fetch git submodules otherwise typeshed is not fetched. - ;; Typeshed is a collection of Python sources type annotation - ;; (data) files. - (recursive? #t))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0awigl51an7466yk236f9vsbqpz2jzd6dsg9v5a4cia37vz4li0a")))))) + (append python-importlib-metadata))))) |