python312Packages.qcs-api-client: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 09:33:05 +02:00
parent eb55f6a8be
commit a4ae3e6c20
1 changed files with 24 additions and 29 deletions

View File

@ -1,23 +1,24 @@
{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, httpx
, iso8601
, poetry-core
, pydantic
, pyjwt
, pytest-asyncio
, pytestCheckHook
, python-dateutil
, pythonAtLeast
, pythonOlder
, pythonRelaxDepsHook
, respx
, retrying
, rfc3339
, toml
{
lib,
attrs,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
httpx,
iso8601,
poetry-core,
pydantic,
pyjwt,
pytest-asyncio,
pytestCheckHook,
python-dateutil,
pythonAtLeast,
pythonOlder,
pythonRelaxDepsHook,
respx,
retrying,
rfc3339,
toml,
}:
buildPythonPackage rec {
@ -50,13 +51,9 @@ buildPythonPackage rec {
"pydantic"
];
build-system = [
poetry-core
];
build-system = [ poetry-core ];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
attrs
@ -79,9 +76,7 @@ buildPythonPackage rec {
# Tests are failing on Python 3.11, Fatal Python error: Aborted
doCheck = !(pythonAtLeast "3.11");
pythonImportsCheck = [
"qcs_api_client"
];
pythonImportsCheck = [ "qcs_api_client" ];
meta = with lib; {
description = "Python library for accessing the Rigetti QCS API";