diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-12-27 15:16:14 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:56:59 +0200 |
commit | e0aa529716ca736010783f628d05487ebd7cdcfe (patch) | |
tree | 3a941ab7f6fb3d0aa3bc2b4690c5ccafdd27b635 | |
parent | bbe1a55ff9e77fc89d820f9de31f780447822cd2 (diff) | |
download | guix-e0aa529716ca736010783f628d05487ebd7cdcfe.tar guix-e0aa529716ca736010783f628d05487ebd7cdcfe.tar.gz |
gnu: rust-python3-dll-a-0.2: Move to (gnu packages crates-windows).
* gnu/packages/crates-io.scm (rust-python3-dll-a-0.2): Move from here ...
* gnu/packages/crates-windows.scm: ... to here.
Change-Id: Ic16735b24b0a6e37cee0992d0baf130fe9ac4576
-rw-r--r-- | gnu/packages/crates-io.scm | 22 | ||||
-rw-r--r-- | gnu/packages/crates-windows.scm | 23 |
2 files changed, 23 insertions, 22 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index bef32b36b8..12e3d0a60a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -53894,28 +53894,6 @@ Python code from a Rust binary is also supported.") ("rust-zip" ,rust-zip-0.6)) #:cargo-development-inputs (("rust-serde-json" ,rust-serde-json-1)))))) -(define-public rust-python3-dll-a-0.2 - (package - (name "rust-python3-dll-a") - (version "0.2.6") - (source (origin - (method url-fetch) - (uri (crate-uri "python3-dll-a" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1a676r8xlbkijdagywwz838rbdnc9h28lgmx1ccvyqj9h9rbs5d9")))) - (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 (package (name "rust-qstring") diff --git a/gnu/packages/crates-windows.scm b/gnu/packages/crates-windows.scm index f38405d213..882787dc07 100644 --- a/gnu/packages/crates-windows.scm +++ b/gnu/packages/crates-windows.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2022 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2022 ( <paren@disroot.org> +;;; Copyright © 2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2022, 2023 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2022, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com> @@ -464,6 +465,28 @@ IOCP and Async I/O abstractions.") "Utility to activate escape codes in Windows' CMD and PowerShell.") (license license:expat))) +(define-public rust-python3-dll-a-0.2 + (package + (name "rust-python3-dll-a") + (version "0.2.6") + (source (origin + (method url-fetch) + (uri (crate-uri "python3-dll-a" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1a676r8xlbkijdagywwz838rbdnc9h28lgmx1ccvyqj9h9rbs5d9")))) + (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-windows-0.48 (package (name "rust-windows") |