mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 11:25:22 -05:00
gnu: Add python-rfc3339-validator.
* gnu/packages/python-xyz.scm (python-rfc3339-validator): New variable.
This commit is contained in:
parent
34c98f2cd3
commit
ac4a73a1af
1 changed files with 21 additions and 0 deletions
|
@ -29550,6 +29550,27 @@ (define-public python-ofxparse
|
||||||
statements in OFX files.")
|
statements in OFX files.")
|
||||||
(license license:expat)))
|
(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
|
(define-public python-strict-rfc3339
|
||||||
(package
|
(package
|
||||||
(name "python-strict-rfc3339")
|
(name "python-strict-rfc3339")
|
||||||
|
|
Loading…
Reference in a new issue