depot/third_party/nixpkgs/pkgs/development/python-modules/cirq-ionq/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

39 lines
773 B
Nix

{
buildPythonPackage,
cirq-core,
requests,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cirq-ionq";
format = "setuptools";
inherit (cirq-core) version src meta;
sourceRoot = "${src.name}/${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"
];
}