python3Packages.cirq-web: init at 0.12.0

This commit is contained in:
Fabian Affolter 2021-09-18 20:53:05 +02:00
parent b73c6bd916
commit 74132a11cc
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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" ];
}

View file

@ -1467,6 +1467,8 @@ in {
cirq-pasqal = callPackage ../development/python-modules/cirq-pasqal { };
cirq-web = callPackage ../development/python-modules/cirq-web { };
ciscomobilityexpress = callPackage ../development/python-modules/ciscomobilityexpress { };
ciso8601 = callPackage ../development/python-modules/ciso8601 { };