From 808e44a9fddaa8066538830cd334f7874ef3eb92 Mon Sep 17 00:00:00 2001 From: Drew Risinger Date: Fri, 29 Oct 2021 17:18:34 -0400 Subject: [PATCH] python3Packages.cirq: add other cirq subpackages --- .../development/python-modules/cirq/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/cirq/default.nix b/pkgs/development/python-modules/cirq/default.nix index f8afdcbbb050..bd6a06cd95d5 100644 --- a/pkgs/development/python-modules/cirq/default.nix +++ b/pkgs/development/python-modules/cirq/default.nix @@ -1,7 +1,12 @@ { lib , buildPythonPackage +, cirq-aqt , cirq-core , cirq-google +, cirq-ionq +, cirq-pasqal +, cirq-rigetti +, cirq-web # test inputs , pytestCheckHook }: @@ -11,8 +16,13 @@ buildPythonPackage rec { inherit (cirq-core) version src meta; propagatedBuildInputs = [ + cirq-aqt cirq-core + cirq-ionq cirq-google + cirq-rigetti + cirq-pasqal + cirq-web ]; # pythonImportsCheck = [ "cirq" "cirq.Circuit" ]; # cirq's importlib hook doesn't work here @@ -20,8 +30,13 @@ buildPythonPackage rec { # Don't run submodule or development tool tests disabledTestPaths = [ - "cirq-google" + "cirq-aqt" "cirq-core" + "cirq-google" + "cirq-ionq" + "cirq-pasqal" + "cirq-rigetti" + "cirq-web" "dev_tools" ];