From fce9ee2aec91e15d28a2ba663c8b4590de25550c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 18 May 2022 20:13:41 +0200 Subject: [PATCH 1/2] python310Packages.qcs-api-client: 0.20.12 -> 0.20.14 --- .../python-modules/qcs-api-client/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/qcs-api-client/default.nix b/pkgs/development/python-modules/qcs-api-client/default.nix index 92aaabb4e1ab..277deddbbee4 100644 --- a/pkgs/development/python-modules/qcs-api-client/default.nix +++ b/pkgs/development/python-modules/qcs-api-client/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "qcs-api-client"; - version = "0.20.12"; + version = "0.20.14"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "rigetti"; repo = "qcs-api-client-python"; rev = "v${version}"; - hash = "sha256-4462T2WIBdWjtd51YfslYZOcJg9f0nrSOKTi2ed6WvI="; + hash = "sha256-5xRjjy+4i2JgYOXK35d4uqAyJhQgm6VUx72YoooXgSk="; }; nativeBuildInputs = [ @@ -75,6 +75,9 @@ buildPythonPackage rec { disabledTestPaths = [ # Test is outdated "tests/test_client/test_client.py" + "tests/test_client/test_additional_properties.py" + "tests/test_client/test_datetime.py" + "tests/test_imports.py" ]; pythonImportsCheck = [ @@ -83,7 +86,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for accessing the Rigetti QCS API"; - homepage = "https://pypi.org/project/qcs-api-client/"; + homepage = "https://qcs-api-client-python.readthedocs.io/"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; From 98dd18352c5795a3cb3629aab072b53fd25036e6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 27 May 2022 17:20:23 +0200 Subject: [PATCH 2/2] python310Packages.qcs-api-client: 0.20.14 -> 0.20.17 --- pkgs/development/python-modules/qcs-api-client/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/qcs-api-client/default.nix b/pkgs/development/python-modules/qcs-api-client/default.nix index 277deddbbee4..62adb2afd654 100644 --- a/pkgs/development/python-modules/qcs-api-client/default.nix +++ b/pkgs/development/python-modules/qcs-api-client/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "qcs-api-client"; - version = "0.20.14"; + version = "0.20.17"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "rigetti"; repo = "qcs-api-client-python"; rev = "v${version}"; - hash = "sha256-5xRjjy+4i2JgYOXK35d4uqAyJhQgm6VUx72YoooXgSk="; + hash = "sha256-5YGMBoykMtXZgdHubQJKwRqntDPnR6/qsWJc1cYk8CA="; }; nativeBuildInputs = [ @@ -74,8 +74,9 @@ buildPythonPackage rec { disabledTestPaths = [ # Test is outdated - "tests/test_client/test_client.py" "tests/test_client/test_additional_properties.py" + "tests/test_client/test_auth.py" + "tests/test_client/test_client.py" "tests/test_client/test_datetime.py" "tests/test_imports.py" ];