gnu: Add rust-human-date-parser-0.1.
* gnu/packages/crates-io.scm (rust-human-date-parser-0.1): New variable. Change-Id: I910d9c24d56ed2c0fec0af794facee044d253a18master
parent
3a8b37a1e8
commit
e9e38bf06c
|
@ -31803,6 +31803,31 @@ characters in HTML, decoding and unescaping HTML entities as well.")
|
||||||
and traversing, manipulating, and querying the document tree.")
|
and traversing, manipulating, and querying the document tree.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-human-date-parser-0.1
|
||||||
|
(package
|
||||||
|
(name "rust-human-date-parser")
|
||||||
|
(version "0.1.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "human-date-parser" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1g7hlbayw3jknj010jhrcxscyrgpz2s08q3v74337h7xs4x5pmlj"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; use of undeclared crate or module `concat_idents`
|
||||||
|
#:cargo-inputs (("rust-chrono" ,rust-chrono-0.4)
|
||||||
|
("rust-pest" ,rust-pest-2)
|
||||||
|
("rust-pest-derive" ,rust-pest-derive-2)
|
||||||
|
("rust-thiserror" ,rust-thiserror-1))))
|
||||||
|
(home-page "https://github.com/technologicalMayhem/human-date-parser")
|
||||||
|
(synopsis "Parse human-readable strings that express dates")
|
||||||
|
(description
|
||||||
|
"This package parses strings that express dates in a human way into ones
|
||||||
|
usable by code.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-human-format-1
|
(define-public rust-human-format-1
|
||||||
(package
|
(package
|
||||||
(name "rust-human-format")
|
(name "rust-human-format")
|
||||||
|
|
Reference in New Issue