Fabian Affolter 2024-04-05 09:55:18 +02:00
parent cb953d955e
commit 7a8bba665f
1 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "quil";
version = "0.6.5";
version = "0.7.1";
pyproject = true;
disabled = pythonOlder "3.8";
@ -19,13 +19,13 @@ buildPythonPackage rec {
owner = "rigetti";
repo = "quil-rs";
rev = "quil-py/v${version}";
hash = "sha256-SYq0NOzYGJuXFPGjvYzGgKvioCk0hBxLR5S6VFU5d88=";
hash = "sha256-GFePbCJnVbzL4cpQ7fy1tk2l7NhAyTVW63lVYTv0/Oo=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
name = "${pname}-${version}";
inherit src;
hash = "sha256-qZY9eQxxlH59DE/RrZFC3G6Pp3IdJupPN5AhUnrKSKs=";
hash = "sha256-catUGCFbkvov1z52f6eyxogflu61VcjIItgEVEWzkpY=";
};
buildAndTestSubdir = "quil-py";
@ -34,12 +34,12 @@ buildPythonPackage rec {
cargo metadata --offline
'';
nativeBuildInputs = [
build-system = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
propagatedBuildInputs = [
dependencies = [
numpy
];