[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: python-typeguard: Add dependency on python-setuptools-scm.
From: |
guix-commits |
Subject: |
01/04: gnu: python-typeguard: Add dependency on python-setuptools-scm. |
Date: |
Sat, 16 Sep 2023 22:32:28 -0400 (EDT) |
monego pushed a commit to branch master
in repository guix.
commit ee17fdfe42daab9ef7849a2d204fc69179daf1bf
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Fri Jun 9 12:44:14 2023 -0300
gnu: python-typeguard: Add dependency on python-setuptools-scm.
* gnu/packages/python-xyz.scm (python-typeguard)[native-inputs]: Add
python-setuptools-scm.
---
gnu/packages/python-xyz.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2230310a03..dd3f987475 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24125,8 +24125,10 @@ based on the CPython 2.7 and 3.7 parsers.")
;; XXX: These fail when installed as a library:
;; https://github.com/agronholm/typeguard/issues/176
"not usefixtures and not test_cached_module")))))))
- (native-inputs
- (list python-mypy python-pytest python-typing-extensions))
+ (native-inputs (list python-mypy
+ python-pytest
+ python-setuptools-scm
+ python-typing-extensions))
(home-page "https://github.com/agronholm/typeguard")
(synopsis "Run-time type checker for Python")
(description