mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
45 lines
788 B
Nix
45 lines
788 B
Nix
{
|
|
buildPythonPackage,
|
|
cirq-core,
|
|
requests,
|
|
pytest-benchmark,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cirq-ionq";
|
|
pyproject = true;
|
|
inherit (cirq-core) version src meta;
|
|
|
|
sourceRoot = "${src.name}/${pname}";
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonRelaxDeps = [
|
|
"requests"
|
|
];
|
|
|
|
dependencies = [
|
|
cirq-core
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-benchmark
|
|
pytestCheckHook
|
|
];
|
|
|
|
# cirq's importlib hook doesn't work here
|
|
#pythonImportsCheck = [ "cirq_ionq" ];
|
|
|
|
disabledTestPaths = [
|
|
# No need to test the version number
|
|
"cirq_ionq/_version_test.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# DeprecationWarning: decompose_to_device was used but is deprecated.
|
|
"test_decompose_operation_deprecated"
|
|
];
|
|
}
|