me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-pyproject-toml-0.8.

* gnu/packages/crates-io.scm (rust-pyproject-toml-0.8): New variable.
(rust-pyproject-toml-0.6): Inherit from rust-pyproject-toml-0.8.

Change-Id: Iaf7ee66364fbb360ab4c63be2c4fbfc126a032de
master
Efraim Flashner 2023-12-24 10:01:38 +02:00
parent 99f0e81a34
commit 9f84e0b5b0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 6 deletions

View File

@ -60334,8 +60334,32 @@ Python code from a Rust binary is also supported.")
("rust-serde-json" ,rust-serde-json-1)
("rust-trybuild" ,rust-trybuild-1))))))
(define-public rust-pyproject-toml-0.8
(package
(name "rust-pyproject-toml")
(version "0.8.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "pyproject-toml" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "010fl8m9cx1a5iapcpy53dabl16ij5saa3maz0lkmwl7j7kabm26"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-indexmap" ,rust-indexmap-2)
("rust-pep440-rs" ,rust-pep440-rs-0.3)
("rust-pep508-rs" ,rust-pep508-rs-0.2)
("rust-serde" ,rust-serde-1)
("rust-toml" ,rust-toml-0.8))))
(home-page "https://github.com/PyO3/pyproject-toml-rs.git")
(synopsis "pyproject.toml parser in Rust")
(description "This package provides a pyproject.toml parser in Rust.")
(license license:expat)))
(define-public rust-pyproject-toml-0.6
(package
(inherit rust-pyproject-toml-0.8)
(name "rust-pyproject-toml")
(version "0.6.1")
(source (origin
@ -60345,18 +60369,13 @@ Python code from a Rust binary is also supported.")
(sha256
(base32
"0pywp6ml15jlv9yxfjcvrs3fgd3xnq8fc6a2wcbw9q9iknmgwygf"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-indexmap" ,rust-indexmap-1)
("rust-pep440-rs" ,rust-pep440-rs-0.3)
("rust-pep508-rs" ,rust-pep508-rs-0.2)
("rust-serde" ,rust-serde-1)
("rust-toml" ,rust-toml-0.7))))
(home-page "https://github.com/PyO3/pyproject-toml-rs.git")
(synopsis "pyproject.toml parser in Rust")
(description "This package provides a pyproject.toml parser in Rust.")
(license license:expat)))
("rust-toml" ,rust-toml-0.7))))))
(define-public rust-python-pkginfo-0.6
(package