Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / cirq-ft / default.nix
blob83a8392b9520490b7aef5393c0454b99495c035a
1 { attrs
2 , buildPythonPackage
3 , cachetools
4 , cirq-core
5 , ipython
6 , ipywidgets
7 , nbconvert
8 , nbformat
9 , pytestCheckHook
12 buildPythonPackage rec {
13   pname = "cirq-ft";
14   inherit (cirq-core) version src meta;
16   sourceRoot = "${src.name}/${pname}";
18   propagatedBuildInputs = [
19     attrs
20     cachetools
21     cirq-core
22     ipython
23     ipywidgets
24     nbconvert
25     nbformat
26   ];
28   nativeCheckInputs = [
29     ipython
30     pytestCheckHook
31   ];
33   # cirq's importlib hook doesn't work here
34   #pythonImportsCheck = [ "cirq_ft" ];