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,
wheel,
# dependencies
broadbean,
cf-xarray,
dask,
h5netcdf,
h5py,
ipykernel,
ipython,
ipywidgets,
jsonschema,
libcst,
matplotlib,
numpy,
opentelemetry-api,
packaging,
pandas,
pillow,
pyarrow,
pyvisa,
ruamel-yaml,
tabulate,
tqdm,
typing-extensions,
uncertainties,
websockets,
wrapt,
xarray,
# optional-dependencies
furo,
jinja2,
nbsphinx,
pyvisa-sim,
scipy,
sphinx,
sphinx-issues,
towncrier,
opencensus,
opencensus-ext-azure,
# checks
deepdiff,
hypothesis,
lxml,
pip,
pytest-asyncio,
pytest-mock,
pytest-rerunfailures,
pytest-xdist,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "qcodes";
version = "0.48.0";
pyproject = true;
src = fetchFromGitHub {
owner = "microsoft";
repo = "Qcodes";
rev = "refs/tags/v${version}";
hash = "sha256-Q1WyuK1mCbs75kGY1Aaw7S5EfFRjwqzZnhNyeSx7qc8=";
};
build-system = [
setuptools
versioningit
wheel
];
dependencies = [
broadbean
cf-xarray
dask
h5netcdf
h5py
ipykernel
ipython
ipywidgets
jsonschema
matplotlib
numpy
opentelemetry-api
packaging
pandas
pillow
pyarrow
pyvisa
ruamel-yaml
tabulate
tqdm
typing-extensions
uncertainties
websockets
wrapt
xarray
];
optional-dependencies = {
docs = [
# autodocsumm
furo
jinja2
nbsphinx
pyvisa-sim
# qcodes-loop
scipy
sphinx
# sphinx-favicon
sphinx-issues
# sphinx-jsonschema
# sphinxcontrib-towncrier
towncrier
];
loop = [
# qcodes-loop
];
opencensus = [
opencensus
opencensus-ext-azure
];
refactor = [
libcst
];
zurichinstruments = [
# zhinst-qcodes
];
};
nativeCheckInputs = [
deepdiff
hypothesis
libcst
lxml
pip
pytest-asyncio
pytest-mock
pytest-rerunfailures
pytest-xdist
pytestCheckHook
pyvisa-sim
sphinx
];
__darwinAllowLocalNetworking = true;
pytestFlagsArray = [
"-v"
"-n"
"$NIX_BUILD_CORES"
# Follow upstream with settings
"-m 'not serial'"
"--hypothesis-profile ci"
"--durations=20"
];
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"
];
disabledTests = [
# Tests are time-sensitive and power-consuming
# Those tests fails repeatably and are flaky
"test_access_channels_by_slice"
"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_ramp_safely"
# more flaky tests
# https://github.com/microsoft/Qcodes/issues/5551
"test_query_close_once_at_init"
"test_step_ramp"
];
pythonImportsCheck = [ "qcodes" ];
# Remove the `asyncio_default_fixture_loop_scope` option as it has been introduced in newer `pytest-asyncio` v0.24
# which is not in nixpkgs yet:
# pytest.PytestConfigWarning: Unknown config option: asyncio_default_fixture_loop_scope
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'default-version = "0.0"' 'default-version = "${version}"' \
--replace-fail 'asyncio_default_fixture_loop_scope = "function"' ""
'';
postInstall = ''
export HOME="$TMPDIR"
'';
meta = {
description = "Python-based data acquisition framework";
changelog = "https://github.com/QCoDeS/Qcodes/releases/tag/v${version}";
downloadPage = "https://github.com/QCoDeS/Qcodes";
homepage = "https://qcodes.github.io/Qcodes/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ evilmav ];
};
}
|