1{ buildPythonPackage 2, cirq-core 3, pytestCheckHook 4}: 5 6buildPythonPackage rec { 7 pname = "cirq-web"; 8 inherit (cirq-core) version src meta; 9 10 sourceRoot = "${src.name}/${pname}"; 11 12 propagatedBuildInputs = [ 13 cirq-core 14 ]; 15 16 nativeCheckInputs = [ 17 pytestCheckHook 18 ]; 19 20 # cirq's importlib hook doesn't work here 21 #pythonImportsCheck = [ "cirq_web" ]; 22 23 disabledTestPaths = [ 24 # No need to test the version number 25 "cirq_web/_version_test.py" 26 ]; 27}