504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
37 lines
549 B
Nix
37 lines
549 B
Nix
{ attrs
|
|
, buildPythonPackage
|
|
, cachetools
|
|
, cirq-core
|
|
, ipython
|
|
, ipywidgets
|
|
, nbconvert
|
|
, nbformat
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cirq-ft";
|
|
format = "setuptools";
|
|
inherit (cirq-core) version src meta;
|
|
|
|
sourceRoot = "${src.name}/${pname}";
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
cachetools
|
|
cirq-core
|
|
ipython
|
|
ipywidgets
|
|
nbconvert
|
|
nbformat
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ipython
|
|
pytestCheckHook
|
|
];
|
|
|
|
# cirq's importlib hook doesn't work here
|
|
#pythonImportsCheck = [ "cirq_ft" ];
|
|
|
|
}
|