blob: db0e5d2455b5cbb5bedc526103823147fc15bdab (
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
|
{
buildPythonPackage,
cirq-core,
requests,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "cirq-pasqal";
pyproject = true;
inherit (cirq-core) version src meta;
sourceRoot = "${src.name}/${pname}";
build-system = [ setuptools ];
pythonRelaxDeps = [
"requests"
];
dependencies = [
cirq-core
requests
];
nativeCheckInputs = [ pytestCheckHook ];
# cirq's importlib hook doesn't work here
#pythonImportsCheck = [ "cirq_pasqal" ];
disabledTestPaths = [
# No need to test the version number
"cirq_pasqal/_version_test.py"
];
}
|