mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-12 13:47:20 +00:00
Merge pull request #316115 from wegank/cirq-rigetti-broken
python311Packages.cirq-rigetti: mark as broken
This commit is contained in:
commit
872a9c7620
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
cirq-core,
|
cirq-core,
|
||||||
requests,
|
lib,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
attrs,
|
attrs,
|
||||||
certifi,
|
certifi,
|
||||||
@ -27,7 +27,7 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cirq-rigetti";
|
pname = "cirq-rigetti";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
inherit (cirq-core) version src meta;
|
inherit (cirq-core) version src;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
@ -84,4 +84,9 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
# cirq's importlib hook doesn't work here
|
# cirq's importlib hook doesn't work here
|
||||||
#pythonImportsCheck = [ "cirq_rigetti" ];
|
#pythonImportsCheck = [ "cirq_rigetti" ];
|
||||||
|
|
||||||
|
meta = cirq-core.meta // {
|
||||||
|
# ModuleNotFoundError: No module named 'pyquil.parser'
|
||||||
|
broken = lib.versionAtLeast pyquil.version "4";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user