python3Packages.qiskit-ibmq-provider: 0.18.3 -> 0.19.0

This commit is contained in:
Drew Risinger 2022-04-14 16:03:28 -04:00
parent c519bc33e8
commit e95a63295b

View File

@ -40,7 +40,7 @@ let
in
buildPythonPackage rec {
pname = "qiskit-ibmq-provider";
version = "0.18.3";
version = "0.19.0";
disabled = pythonOlder "3.6";
@ -48,7 +48,7 @@ buildPythonPackage rec {
owner = "Qiskit";
repo = pname;
rev = version;
sha256 = "1n1w1lnq2xw94hhhn6kdvw8dqlxk5fxwpm8ng31gxbp1s3qgni17";
sha256 = "sha256-ODu8OgGpzlMjRX7ebMu4DXKj6jUyohCq4Hb8aV5eWIU=";
};
propagatedBuildInputs = [
@ -58,6 +58,7 @@ buildPythonPackage rec {
requests
requests_ntlm
websocket-client
websockets
] ++ lib.optionals withVisualization visualizationPackages;
postPatch = ''
@ -72,12 +73,12 @@ buildPythonPackage rec {
pproxy
qiskit-aer
vcrpy
websockets
] ++ lib.optionals (!withVisualization) visualizationPackages;
pythonImportsCheck = [ "qiskit.providers.ibmq" ];
# These disabled tests require internet connection, aren't skipped elsewhere
disabledTests = [
"test_coder_operators" # fails for some reason on nixos-21.05+
# These disabled tests require internet connection, aren't skipped elsewhere
"test_old_api_url"
"test_non_auth_url"
"test_non_auth_url_with_hub"