7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
42 lines
812 B
Nix
42 lines
812 B
Nix
{
|
|
buildPythonPackage,
|
|
cirq-core,
|
|
requests,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cirq-ionq";
|
|
pyproject = true;
|
|
inherit (cirq-core) version src meta;
|
|
|
|
sourceRoot = "${src.name}/${pname}";
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt \
|
|
--replace-fail "requests~=2.18" "requests"
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
cirq-core
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = [ 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"
|
|
];
|
|
}
|