depot/third_party/nixpkgs/pkgs/development/python-modules/qcs-api-client/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

94 lines
2 KiB
Nix

{ lib
, attrs
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, httpx
, iso8601
, poetry-core
, pydantic
, pyjwt
, pytest-asyncio
, pytestCheckHook
, python-dateutil
, pythonOlder
, respx
, retrying
, rfc3339
, toml
}:
buildPythonPackage rec {
pname = "qcs-api-client";
version = "0.21.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "rigetti";
repo = "qcs-api-client-python";
rev = "refs/tags/v${version}";
hash = "sha256-F3Fc03JWS73LcDCufWl/gLkjGvzlwLdBFVsSxtn3LvE=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
attrs
httpx
iso8601
pydantic
pyjwt
python-dateutil
retrying
rfc3339
toml
];
checkInputs = [
pytest-asyncio
pytestCheckHook
respx
];
patches = [
# Switch to poetry-core, https://github.com/rigetti/qcs-api-client-python/pull/2
(fetchpatch {
name = "switch-to-poetry-core.patch";
url = "https://github.com/rigetti/qcs-api-client-python/commit/32f0b3c7070a65f4edf5b2552648d88435469e44.patch";
hash = "sha256-mOc+Q/5cmwPziojtxeEMWWHSDvqvzZlNRbPtOSeTinQ=";
})
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'attrs = "^20.1.0"' 'attrs = "*"' \
--replace 'httpx = "^0.15.0"' 'httpx = "*"' \
--replace 'iso8601 = "^0.1.13"' 'iso8601 = "*"' \
--replace 'pydantic = "^1.7.2"' 'pydantic = "*"' \
--replace 'pyjwt = "^1.7.1"' 'pyjwt = "*"'
'';
disabledTestPaths = [
# Test is outdated
"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"
];
pythonImportsCheck = [
"qcs_api_client"
];
meta = with lib; {
description = "Python library for accessing the Rigetti QCS API";
homepage = "https://qcs-api-client-python.readthedocs.io/";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}