1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests
5, requests_ntlm
6}:
7
8buildPythonPackage rec {
9 pname = "IBMQuantumExperience";
10 version = "2.0.2";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "f2a5662d7457c297af0751985979e64a88569beb07cfedad0ce1dfa5a7237842";
15 };
16
17 propagatedBuildInputs = [
18 requests
19 requests_ntlm
20 ];
21
22 # test requires an API token
23 doCheck = false;
24
25 meta = {
26 description = "A Python library for the Quantum Experience API";
27 homepage = https://github.com/QISKit/qiskit-api-py;
28 license = lib.licenses.asl20;
29 maintainers = with lib.maintainers; [
30 pandaman
31 ];
32 };
33}