apteryx pushed a commit to branch wip-ipython-polyglossia in repository guix.
commit 6ae35f390201ca7895a6192286d2d16c4f0323c9 Author: Maxim Cournoyer <[email protected]> AuthorDate: Sun Apr 17 09:00:45 2022 -0400 gnu: Add python-rfc3339-validator. * gnu/packages/python-xyz.scm (python-rfc3339-validator): New variable. --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4e37e7d2f4..6d3c0b69bd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29444,6 +29444,27 @@ from multiple sources. Online trading accounts also often provide account statements in OFX files.") (license license:expat))) +(define-public python-rfc3339-validator + (package + (name "python-rfc3339-validator") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rfc3339_validator" version)) + (sha256 + (base32 "0srg0b89aikzinw72s433994k5gv5lfyarq1adhas11kz6yjm2hk")))) + (build-system python-build-system) + (native-inputs (list python-hypothesis + python-pytest + python-pytest-runner + python-strict-rfc3339)) + (propagated-inputs (list python-six)) + (home-page "https://github.com/naimetti/rfc3339-validator") + (synopsis "Python RFC3339 validator") + (description "This package provides a pure Python RFC3339 validator.") + (license license:expat))) + (define-public python-strict-rfc3339 (package (name "python-strict-rfc3339")
