mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
87 lines
1.7 KiB
Nix
87 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
attrs,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
httpx,
|
|
iso8601,
|
|
poetry-core,
|
|
pydantic,
|
|
pydantic-settings,
|
|
pyjwt,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
pythonAtLeast,
|
|
tenacity,
|
|
respx,
|
|
retrying,
|
|
rfc3339,
|
|
toml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "qcs-api-client";
|
|
version = "0.26.5";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rigetti";
|
|
repo = "qcs-api-client-python";
|
|
tag = "v${version}";
|
|
hash = "sha256-8ZD/vqWA1QnEQXz6P/+NIxe0go1Q/XQ3iRNL/TkoTmM=";
|
|
};
|
|
|
|
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=";
|
|
})
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"attrs"
|
|
"httpx"
|
|
"iso8601"
|
|
"pydantic"
|
|
"tenacity"
|
|
];
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
attrs
|
|
httpx
|
|
iso8601
|
|
pydantic
|
|
pydantic-settings
|
|
pyjwt
|
|
python-dateutil
|
|
retrying
|
|
rfc3339
|
|
tenacity
|
|
toml
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
respx
|
|
];
|
|
|
|
# Tests are failing on Python 3.11, Fatal Python error: Aborted
|
|
doCheck = !(pythonAtLeast "3.11");
|
|
|
|
pythonImportsCheck = [ "qcs_api_client" ];
|
|
|
|
meta = {
|
|
description = "Python library for accessing the Rigetti QCS API";
|
|
homepage = "https://qcs-api-client-python.readthedocs.io/";
|
|
changelog = "https://github.com/rigetti/qcs-api-client-python/releases/tag/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|