Robert Schütz 2024-11-29 19:27:48 -08:00
parent 69f2173cf6
commit fdd0048a2c

View File

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "quil";
version = "0.12.1";
version = "0.13.2";
pyproject = true;
disabled = pythonOlder "3.8";
@ -22,13 +22,12 @@ buildPythonPackage rec {
owner = "rigetti";
repo = "quil-rs";
rev = "quil-py/v${version}";
hash = "sha256-OCQp8WKOxyZNMu2waeasSZ4E8VhFqDZcgGbDoMpKeHg=";
hash = "sha256-Hapj90F5IloyW7MyeTg95rlUfb4JiZdtz1HuJVxlk/c=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
name = "${pname}-${version}";
inherit src;
hash = "sha256-EmSDjheLEyFr0w6XOvJYdRmGGlv2L/wh3qAN8Nn5lyg=";
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-yfO1/ChiFYTB/LWCc9CR3lBzU71FEos+jjkHVoJyoeI=";
};
buildAndTestSubdir = "quil-py";