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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
versioningit,
# dependencies
broadbean,
cf-xarray,
dask,
h5netcdf,
h5py,
ipykernel,
ipywidgets,
jsonschema,
libcst,
matplotlib,
networkx,
numpy,
opentelemetry-api,
packaging,
pandas,
pillow,
pyarrow,
pyvisa,
ruamel-yaml,
tabulate,
tqdm,
typing-extensions,
uncertainties,
websockets,
xarray,
# optional-dependencies
furo,
nbsphinx,
pyvisa-sim,
scipy,
sphinx,
sphinx-issues,
towncrier,
# tests
deepdiff,
hypothesis,
lxml,
pip,
pytest-asyncio,
pytest-cov-stub,
pytest-mock,
pytest-rerunfailures,
pytest-xdist,
pytestCheckHook,
writableTmpDirAsHomeHook,
}:
buildPythonPackage (finalAttrs: {
pname = "qcodes";
version = "0.54.4";
pyproject = true;
src = fetchFromGitHub {
owner = "microsoft";
repo = "Qcodes";
tag = "v${finalAttrs.version}";
hash = "sha256-xiD/Iy/5FVadOc9/AxUbGgpOlyli2g6/hwpY1J3/urE=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail \
'default-version = "0.54.0dev+Unknown"' \
'default-version = "${finalAttrs.version}"'
'';
build-system = [
setuptools
versioningit
];
dependencies = [
broadbean
cf-xarray
dask
h5netcdf
h5py
ipykernel
ipywidgets
jsonschema
matplotlib
networkx
numpy
opentelemetry-api
packaging
pandas
pillow
pyarrow
pyvisa
ruamel-yaml
tabulate
tqdm
typing-extensions
uncertainties
websockets
xarray
];
optional-dependencies = {
docs = [
# autodocsumm
furo
nbsphinx
pyvisa-sim
# qcodes-loop
scipy
sphinx
# sphinx-favicon
sphinx-issues
# sphinx-jsonschema
# sphinxcontrib-towncrier
towncrier
];
loop = [
# qcodes-loop
];
refactor = [
libcst
];
zurichinstruments = [
# zhinst-qcodes
];
};
nativeCheckInputs = [
deepdiff
hypothesis
libcst
lxml
pip
pytest-asyncio
pytest-cov-stub
pytest-mock
pytest-rerunfailures
pytest-xdist
pytestCheckHook
pyvisa-sim
sphinx
writableTmpDirAsHomeHook
];
__darwinAllowLocalNetworking = true;
pytestFlags = [
"-v"
"--hypothesis-profile ci"
# Follow upstream with settings
"--durations=20"
# ERROR tests/test_interactive_widget.py - DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs
# given by the platformdirs library. To remove this warning and
# see the appropriate new directories, set the environment variable
# `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`.
# The use of platformdirs will be the default in `jupyter_core` v6
"-Wignore::DeprecationWarning"
];
disabledTestPaths = [
# Test depends on qcodes-loop, causing a cyclic dependency
"tests/dataset/measurement/test_load_legacy_data.py"
# TypeError
"tests/dataset/test_dataset_basic.py"
];
disabledTestMarks = [
"serial"
];
disabledTests = [
# Tests are time-sensitive and power-consuming
# Those tests fails repeatably and are flaky
"test_access_channels_by_name"
"test_access_channels_by_slice"
"test_access_channels_by_tuple"
"test_aggregator"
"test_datasaver"
"test_do1d_additional_setpoints_shape"
"test_dond_1d_additional_setpoints_shape"
"test_field_limits"
"test_get_array_in_scalar_param_data"
"test_get_parameter_data"
"test_measured"
"test_ramp_safely"
"test_ramp_scaled"
# more flaky tests
# https://github.com/microsoft/Qcodes/issues/5551
"test_query_close_once_at_init"
"test_step_ramp"
];
pythonImportsCheck = [ "qcodes" ];
meta = {
description = "Python-based data acquisition framework";
changelog = "https://github.com/QCoDeS/Qcodes/releases/tag/${finalAttrs.src.tag}";
downloadPage = "https://github.com/QCoDeS/Qcodes";
homepage = "https://qcodes.github.io/Qcodes/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
GaetanLepage
];
};
})
|