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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# Python Inputs
fastdtw,
numpy,
psutil,
qiskit,
scikit-learn,
sparse,
torch,
# Check Inputs
pytestCheckHook,
ddt,
pytest-timeout,
qiskit-aer,
}:
buildPythonPackage rec {
pname = "qiskit-machine-learning";
version = "0.8.3";
pyproject = true;
src = fetchFromGitHub {
owner = "qiskit";
repo = pname;
tag = version;
hash = "sha256-XnLCejK6m8p/OC5gKCoP1UXVblISChu3lKF8BnrnRbk=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
fastdtw
numpy
psutil
torch
qiskit
scikit-learn
sparse
];
doCheck = false; # TODO: enable. Tests fail on unstable due to some multithreading issue?
nativeCheckInputs = [
pytestCheckHook
pytest-timeout
ddt
qiskit-aer
];
pythonImportsCheck = [ "qiskit_machine_learning" ];
pytestFlags = [
"--durations=10"
"--showlocals"
"-vv"
];
disabledTestPaths = [
"test/connectors/test_torch_connector.py" # TODO: fix, get multithreading errors with python3.9, segfaults
];
disabledTests = [
# Slow tests >10 s
"test_readme_sample"
"test_vqr_8"
"test_vqr_7"
"test_qgan_training_cg"
"test_vqc_4"
"test_classifier_with_circuit_qnn_and_cross_entropy_4"
"test_vqr_4"
"test_regressor_with_opflow_qnn_4"
"test_qgan_save_model"
"test_qgan_training_analytic_gradients"
"test_qgan_training_run_algo_numpy"
"test_ad_hoc_data"
"test_qgan_training"
];
meta = {
broken = true; # incompatible with qiskit >= 2.0 (see https://github.com/Qiskit/qiskit-machine-learning/issues/934)
description = "Software for developing quantum computing programs";
homepage = "https://qiskit.org";
downloadPage = "https://github.com/QISKit/qiskit-optimization/releases";
changelog = "https://qiskit.org/documentation/release_notes.html";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|