me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-python3-dll-a.

* gnu/packages/crates-io.scm (rust-python3-dll-a-0.2): New variable.
master
Marius Bakke 2022-08-17 21:57:28 +02:00
parent e38a46a9bb
commit 2fe473a5af
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 22 additions and 0 deletions

View File

@ -46449,6 +46449,28 @@ creating native Python extension modules. Running and interacting with
Python code from a Rust binary is also supported.") Python code from a Rust binary is also supported.")
(license license:asl2.0))) (license license:asl2.0)))
(define-public rust-python3-dll-a-0.2
(package
(name "rust-python3-dll-a")
(version "0.2.5")
(source (origin
(method url-fetch)
(uri (crate-uri "python3-dll-a" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"01k2nf4wq4f4xnaq3fy1gx12v10pndwmdrjq4x4pshhjxxnrpml9"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f ;Windows-like targets only
#:cargo-inputs (("rust-cc" ,rust-cc-1))))
(home-page "https://github.com/pyo3/python3-dll-a")
(synopsis "Python import library generator")
(description
"This crate generates import libraries for the Python shared library
for MinGW-w64 and MSVC (cross-)compile targets.")
(license license:expat)))
(define-public rust-qstring-0.7 (define-public rust-qstring-0.7
(package (package
(name "rust-qstring") (name "rust-qstring")