guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d24f8308fe9f9abc962580cd36ed7fdfff0f1a92
Author: Spencer King <[email protected]>
AuthorDate: Tue Aug 25 00:20:28 2026 +0000
gnu: Add python-cirq-google.
* gnu/packages/quantum.scm: (python-cirq-google): New variable.
Merges: guix/guix!10789
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/quantum.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/quantum.scm b/gnu/packages/quantum.scm
index 908a51773a..8004747bf5 100644
--- a/gnu/packages/quantum.scm
+++ b/gnu/packages/quantum.scm
@@ -24,9 +24,11 @@
#:use-module (gnu packages lisp-check)
#:use-module (gnu packages lisp-xyz)
#:use-module (gnu packages machine-learning)
+ #:use-module (gnu packages protobuf)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-check)
#:use-module (gnu packages python-science)
+ #:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (guix build-system asdf)
#:use-module (guix build-system pyproject)
@@ -112,6 +114,34 @@ variety of commercial quantum computing platforms by
installing additional
integrations.")
(license %cirq-license)))
+(define-public python-cirq-google
+ (package
+ (name "python-cirq-google")
+ (version %cirq-version)
+ (source %cirq-source)
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _
+ (chdir "cirq-google"))))))
+ (native-inputs
+ (list python-setuptools))
+ (propagated-inputs
+ (list python-cirq-core
+ python-google-api-core
+ python-proto-plus
+ python-protobuf-6
+ python-typedunits))
+ (home-page %cirq-home-page)
+ (synopsis "Interface to Google's Quantum Computing Service")
+ (description
+ "This package provides an interface for Cirq to Google's Quantum Computing
+Service.")
+ (license %cirq-license)))
+
(define-public python-quimb
(package
(name "python-quimb")