Commit 5c307b6b authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.cirq-ft: init at 1.2.0

parent ba077857
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{ attrs
, buildPythonPackage
, cachetools
, cirq-core
, ipython
, ipywidgets
, nbconvert
, nbformat
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "cirq-ft";
  inherit (cirq-core) version src meta;

  sourceRoot = "${src.name}/${pname}";

  propagatedBuildInputs = [
    attrs
    cachetools
    cirq-core
    ipython
    ipywidgets
    nbconvert
    nbformat
  ];

  nativeCheckInputs = [
    ipython
    pytestCheckHook
  ];

  # cirq's importlib hook doesn't work here
  #pythonImportsCheck = [ "cirq_ft" ];

}
+3 −0
Original line number Diff line number Diff line
{ buildPythonPackage
, cirq-aqt
, cirq-core
, cirq-ft
, cirq-google
, cirq-ionq
, cirq-pasqal
@@ -16,6 +17,7 @@ buildPythonPackage rec {
  propagatedBuildInputs = [
    cirq-aqt
    cirq-core
    cirq-ft
    cirq-ionq
    cirq-google
    cirq-rigetti
@@ -32,6 +34,7 @@ buildPythonPackage rec {
  disabledTestPaths = [
    "cirq-aqt"
    "cirq-core"
    "cirq-ft"
    "cirq-google"
    "cirq-ionq"
    "cirq-pasqal"
+2 −0
Original line number Diff line number Diff line
@@ -1975,6 +1975,8 @@ self: super: with self; {
  cirq-core = callPackage ../development/python-modules/cirq-core { };
  cirq-ft = callPackage ../development/python-modules/cirq-ft { };
  cirq-ionq = callPackage ../development/python-modules/cirq-ionq { };
  cirq-google = callPackage ../development/python-modules/cirq-google { };