gnu: Add python-rfc3339-validator.

* gnu/packages/python-xyz.scm (python-rfc3339-validator): New variable.
This commit is contained in:
Maxim Cournoyer 2022-04-17 09:00:45 -04:00
parent 34c98f2cd3
commit ac4a73a1af
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -29550,6 +29550,27 @@ (define-public python-ofxparse
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")