depot/third_party/nixpkgs/pkgs/development/python-modules/cirq-web/default.nix

26 lines
394 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, cirq-core
, pythonOlder
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "cirq-web";
inherit (cirq-core) version src meta;
sourceRoot = "source/${pname}";
propagatedBuildInputs = [
cirq-core
];
checkInputs = [
pytestCheckHook
];
# cirq's importlib hook doesn't work here
#pythonImportsCheck = [ "cirq_web" ];
}