2021-05-19 23:43:52 +01:00
|
|
|
{ lib
|
2020-01-17 02:28:43 +00:00
|
|
|
, buildPythonPackage
|
2021-05-19 23:43:52 +01:00
|
|
|
, cirq-core
|
|
|
|
, cirq-google
|
2020-01-17 02:28:43 +00:00
|
|
|
# test inputs
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cirq";
|
2021-05-19 23:43:52 +01:00
|
|
|
inherit (cirq-core) version src meta;
|
2020-09-01 02:56:40 +01:00
|
|
|
|
2020-01-17 02:28:43 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-05-19 23:43:52 +01:00
|
|
|
cirq-core
|
|
|
|
cirq-google
|
2020-01-17 02:28:43 +00:00
|
|
|
];
|
|
|
|
|
2020-09-01 02:56:40 +01:00
|
|
|
# pythonImportsCheck = [ "cirq" "cirq.Circuit" ]; # cirq's importlib hook doesn't work here
|
2021-05-19 23:43:52 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2020-05-12 00:00:17 +01:00
|
|
|
|
2021-05-19 23:43:52 +01:00
|
|
|
# Don't run submodule or development tool tests
|
|
|
|
disabledTestPaths = [
|
|
|
|
"cirq-google"
|
|
|
|
"cirq-core"
|
|
|
|
"dev_tools"
|
2020-04-17 00:18:12 +01:00
|
|
|
];
|
2020-01-17 02:28:43 +00:00
|
|
|
|
|
|
|
}
|