python3Packages.cirq: 0.10.0 -> 0.11.0
[NixPkgs.git] / pkgs / development / python-modules / cirq / default.nix
blobf8afdcbbb050be6407ef94d0d37bcb44af19bd9d
1 { lib
2 , buildPythonPackage
3 , cirq-core
4 , cirq-google
5   # test inputs
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "cirq";
11   inherit (cirq-core) version src meta;
13   propagatedBuildInputs = [
14     cirq-core
15     cirq-google
16   ];
18   # pythonImportsCheck = [ "cirq" "cirq.Circuit" ];  # cirq's importlib hook doesn't work here
19   checkInputs = [ pytestCheckHook ];
21   # Don't run submodule or development tool tests
22   disabledTestPaths = [
23     "cirq-google"
24     "cirq-core"
25     "dev_tools"
26   ];