Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / cirq-ft / default.nix
bloba0fbbc40da1f25d4ca2b4c466f6b7cbfbf5a1b04
1 { attrs
2 , buildPythonPackage
3 , cachetools
4 , cirq-core
5 , ipython
6 , ipywidgets
7 , nbconvert
8 , nbformat
9 , pytestCheckHook
10 , setuptools
13 buildPythonPackage rec {
14   pname = "cirq-ft";
15   pyproject = true;
16   inherit (cirq-core) version src meta;
18   sourceRoot = "${src.name}/${pname}";
20   nativeBuildInputs = [
21     setuptools
22   ];
24   propagatedBuildInputs = [
25     attrs
26     cachetools
27     cirq-core
28     ipython
29     ipywidgets
30     nbconvert
31     nbformat
32   ];
34   nativeCheckInputs = [
35     ipython
36     pytestCheckHook
37   ];
39   disabledTests = [
40     # Upstream doesn't always adjust the version
41     "test_version"
42   ];
44   # cirq's importlib hook doesn't work here
45   #pythonImportsCheck = [ "cirq_ft" ];