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