1{ attrs
2, buildPythonPackage
3, cachetools
4, cirq-core
5, ipython
6, ipywidgets
7, nbconvert
8, nbformat
9, pytestCheckHook
10}:
11
12buildPythonPackage rec {
13 pname = "cirq-ft";
14 inherit (cirq-core) version src meta;
15
16 sourceRoot = "${src.name}/${pname}";
17
18 propagatedBuildInputs = [
19 attrs
20 cachetools
21 cirq-core
22 ipython
23 ipywidgets
24 nbconvert
25 nbformat
26 ];
27
28 nativeCheckInputs = [
29 ipython
30 pytestCheckHook
31 ];
32
33 # cirq's importlib hook doesn't work here
34 #pythonImportsCheck = [ "cirq_ft" ];
35
36}