fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
25 lines
488 B
Nix
25 lines
488 B
Nix
{
|
|
buildPythonPackage,
|
|
cirq-core,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cirq-web";
|
|
format = "setuptools";
|
|
inherit (cirq-core) version src meta;
|
|
|
|
sourceRoot = "${src.name}/${pname}";
|
|
|
|
propagatedBuildInputs = [ cirq-core ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
# cirq's importlib hook doesn't work here
|
|
#pythonImportsCheck = [ "cirq_web" ];
|
|
|
|
disabledTestPaths = [
|
|
# No need to test the version number
|
|
"cirq_web/_version_test.py"
|
|
];
|
|
}
|