Merge pull request #179998 from fabaff/cirq-bump

python3Packages.cirq-core: 0.14.1 -> 0.15.0

authored by Fabian Affolter and committed by GitHub 21cfeb7d 6c3cfb78

+7 -15
+2 -2
pkgs/development/python-modules/cirq-core/default.nix
··· 31 31 32 32 buildPythonPackage rec { 33 33 pname = "cirq-core"; 34 - version = "0.14.1"; 34 + version = "0.15.0"; 35 35 36 36 disabled = pythonOlder "3.6"; 37 37 ··· 39 39 owner = "quantumlib"; 40 40 repo = "cirq"; 41 41 rev = "v${version}"; 42 - sha256 = "sha256-cIDwV3IBXrTJ4jC1/HYmduY3tLe/f6wj8CWZ4cnThG8="; 42 + sha256 = "sha256-E36zXpv+9WBNYvv/shItS7Q34gYqUyADlqWd+m4Jpps="; 43 43 }; 44 44 45 45 sourceRoot = "source/${pname}";
+3 -11
pkgs/development/python-modules/cirq/default.nix
··· 1 1 { buildPythonPackage 2 - , fetchpatch 3 2 , cirq-aqt 4 3 , cirq-core 5 4 , cirq-google ··· 7 6 , cirq-pasqal 8 7 , cirq-rigetti 9 8 , cirq-web 10 - # test inputs 11 9 , pytestCheckHook 12 10 }: 13 11 ··· 15 13 pname = "cirq"; 16 14 inherit (cirq-core) version src meta; 17 15 18 - patches = [ 19 - (fetchpatch { 20 - url = "https://github.com/quantumlib/Cirq/commit/b832db606e5f1850b1eda168a6d4a8e77d8ec711.patch"; 21 - name = "pr-5330-prevent-implicit-packages.patch"; 22 - sha256 = "sha256-HTEH3fFxPiBedaz5GxZjXayvoiazwHysKZIOzqwZmbg="; 23 - }) 24 - ]; 25 - 26 16 propagatedBuildInputs = [ 27 17 cirq-aqt 28 18 cirq-core ··· 34 24 ]; 35 25 36 26 # pythonImportsCheck = [ "cirq" "cirq.Circuit" ]; # cirq's importlib hook doesn't work here 37 - checkInputs = [ pytestCheckHook ]; 27 + checkInputs = [ 28 + pytestCheckHook 29 + ]; 38 30 39 31 # Don't run submodule or development tool tests 40 32 disabledTestPaths = [
+2 -2
pkgs/development/python-modules/duet/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "duet"; 10 - version = "0.2.1"; 10 + version = "0.2.7"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "google"; 14 14 repo = "duet"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-hK2Cx7dSm1mGM2z9oCoRogfa2aIsjyJcdpSSfdHhPmw="; 16 + sha256 = "sha256-9CTAupAxZI1twoLpgr7VfECw70QunE6pk+SskiT3JDw="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [ typing-extensions ];