blob: f5cd8c4eafe718352200254efefd8c77fab09dfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
buildPythonPackage,
# build-system
setuptools,
# dependencies
cirq-aqt,
cirq-core,
cirq-google,
cirq-ionq,
cirq-pasqal,
cirq-web,
# tests
pytestCheckHook,
}:
buildPythonPackage {
pname = "cirq";
pyproject = true;
inherit (cirq-core) version src meta;
build-system = [ setuptools ];
dependencies = [
cirq-aqt
cirq-core
cirq-google
cirq-ionq
cirq-pasqal
cirq-web
];
# pythonImportsCheck = [ "cirq" "cirq.Circuit" ]; # cirq's importlib hook doesn't work here
nativeCheckInputs = [ pytestCheckHook ];
# Don't run submodule or development tool tests
disabledTestPaths = [
"cirq-aqt"
"cirq-core"
"cirq-google"
"cirq-ionq"
"cirq-pasqal"
"cirq-web"
"dev_tools"
];
}
|