7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
86 lines
1.9 KiB
Nix
86 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
opentelemetry-api,
|
|
opentelemetry-sdk,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
qcs-api-client-common,
|
|
quil,
|
|
rustPlatform,
|
|
darwin,
|
|
libiconv,
|
|
syrupy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "qcs-sdk-python";
|
|
version = "0.20.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rigetti";
|
|
repo = "qcs-sdk-rust";
|
|
rev = "python/v${version}";
|
|
hash = "sha256-OuFEygZWfNnhRDLeEY10gGYD9EF5LkPd+K3Uu8X0hwY=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"quil-rs-0.28.1" = "sha256-nyKLBL5Q51u2OTkpr9oKb0c5saWeW3wmZC3g7vxyeEQ=";
|
|
};
|
|
};
|
|
|
|
buildAndTestSubdir = "crates/python";
|
|
|
|
build-system = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
];
|
|
|
|
dependencies = [
|
|
qcs-api-client-common
|
|
quil
|
|
];
|
|
|
|
optional-dependencies = {
|
|
tracing-opentelemetry = [ opentelemetry-api ];
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
libiconv
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
opentelemetry-sdk
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
syrupy
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_compile_program"
|
|
"test_conjugate_pauli_by_clifford"
|
|
"test_execute_qvm"
|
|
"test_generate_randomized_benchmark_sequence"
|
|
"test_get_report"
|
|
"test_get_version_info"
|
|
"test_list_quantum_processors_timeout"
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/rigetti/qcs-sdk-rust/blob/${src.rev}/crates/python/CHANGELOG.md";
|
|
description = "Python interface for the QCS Rust SDK";
|
|
homepage = "https://github.com/rigetti/qcs-sdk-rust/tree/main/crates/python";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|