gnu: Add rust-human-date-parser-0.1.

* gnu/packages/crates-io.scm (rust-human-date-parser-0.1): New variable.

Change-Id: I910d9c24d56ed2c0fec0af794facee044d253a18
This commit is contained in:
Efraim Flashner 2024-03-31 14:58:00 +03:00
parent 3a8b37a1e8
commit e9e38bf06c
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -31803,6 +31803,31 @@ (define-public rust-kuchiki-0.8
and traversing, manipulating, and querying the document tree.")
(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
(package
(name "rust-human-format")