diff options
author | Vinicius Monego <monego@posteo.net> | 2024-05-13 20:52:14 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-24 10:59:59 +0100 |
commit | 06696ac708f9a670ffd5ef90478eb85c57080b35 (patch) | |
tree | 513be71ba32c33a7fdad92909aaf9f1412b745fb /gnu/packages/python-xyz.scm | |
parent | f3cfd885f1756bc001ff3a0b0dde9fe859da4b3d (diff) | |
download | guix-06696ac708f9a670ffd5ef90478eb85c57080b35.tar.gz guix-06696ac708f9a670ffd5ef90478eb85c57080b35.zip |
gnu: Add python-types-dateutil.
* gnu/packages/python-xyz.scm (python-types-dateutil): New variable.
Change-Id: I2b60be63a0dc6eae1f4cd7be11fc38e1bb8acc3c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 53df93b226..b58eb1ff88 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -36104,6 +36104,27 @@ async I/O support.") "This package adds ANSI colors and decorations to your strings.") (license license:isc))) +(define-public python-types-dateutil + (package + (name "python-types-dateutil") + (version "2.9.0.20240316") + (source + (origin + (method url-fetch) + (uri (pypi-uri "types-python-dateutil" version)) + (sha256 + (base32 "00h2xi8p6ygdv9nhgwdyx86ky9m9dpdqgmsdji05x4461cj2wbsx")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; no tests + (native-inputs + (list python-pytest python-setuptools)) + (home-page "https://github.com/python/typeshed") + (synopsis "Typing stubs for python-dateutil") + (description + "This is a PEP 561 type stub package for the @code{python-dateutil} +package.") + (license license:asl2.0))) + (define-public python-types-freezegun (package (name "python-types-freezegun") |