Unverified Commit f438260b authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

python312Packages.quil: 0.11.2 -> 0.11.4 (#340440)

parents c78846f8 5bcd6bb7
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "quil";
  version = "0.11.2";
  version = "0.11.4";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -22,13 +22,13 @@ buildPythonPackage rec {
    owner = "rigetti";
    repo = "quil-rs";
    rev = "quil-py/v${version}";
    hash = "sha256-c5ujyXIHKJ7OgRpL2HPlvDHycXmcHaMbBQ3gsLEWePI=";
    hash = "sha256-I8LV7lqJP2xc8eVxMbixeHMRYiTpmpSahfA3WWRjoHA=";
  };

  cargoDeps = rustPlatform.fetchCargoTarball {
    name = "${pname}-${version}";
    inherit src;
    hash = "sha256-GT+IeMqpecCDWFIcs/lJT88XZUTlQL7PP+d3afhHU2s=";
    hash = "sha256-U9AVJ4i9E0TeG5cPxdx9hJcMKkZvUXcRfZF7VkM7ddI=";
  };

  buildAndTestSubdir = "quil-py";
@@ -42,7 +42,12 @@ buildPythonPackage rec {

  dependencies = [ numpy ];

  pythonImportsCheck = [ "numpy" ];
  pythonImportsCheck = [
    "quil.expression"
    "quil.instructions"
    "quil.program"
    "quil.validation"
  ];

  nativeCheckInputs = [
    pytestCheckHook