9 buildPythonPackage rec {
12 inherit (cirq-core) version src meta;
14 sourceRoot = "${src.name}/${pname}";
17 substituteInPlace requirements.txt \
18 --replace-fail "requests~=2.18" "requests"
21 build-system = [ setuptools ];
28 nativeCheckInputs = [ pytestCheckHook ];
30 # cirq's importlib hook doesn't work here
31 #pythonImportsCheck = [ "cirq_aqt" ];
34 # No need to test the version number
35 "cirq_aqt/_version_test.py"