c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
39 lines
743 B
Nix
39 lines
743 B
Nix
{ buildPythonPackage
|
|
, cirq-core
|
|
, requests
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cirq-ionq";
|
|
inherit (cirq-core) version src meta;
|
|
|
|
sourceRoot = "source/${pname}";
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt \
|
|
--replace "requests~=2.18" "requests"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
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"
|
|
];
|
|
}
|