python3Packages.qiskit: 0.41.1 -> 0.45.1
https://qiskit.org/documentation/release_notes.html
This commit is contained in:
parent
285e3f91a6
commit
045061e1ea
1 changed files with 11 additions and 3 deletions
|
@ -2,6 +2,10 @@
|
|||
, pythonOlder
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
|
||||
# build-system
|
||||
, setuptools
|
||||
|
||||
# Python Inputs
|
||||
, qiskit-aer
|
||||
, qiskit-ibmq-provider
|
||||
|
@ -28,8 +32,8 @@ in
|
|||
buildPythonPackage rec {
|
||||
pname = "qiskit";
|
||||
# NOTE: This version denotes a specific set of subpackages. See https://qiskit.org/documentation/release_notes.html#version-history
|
||||
version = "0.41.1";
|
||||
format = "setuptools";
|
||||
version = "0.45.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
|
@ -37,9 +41,13 @@ buildPythonPackage rec {
|
|||
owner = "Qiskit";
|
||||
repo = "qiskit";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-ICJJvbekvpaBMnSf+NHbTiarb+Ye3NtktcRYAq8KaCs=";
|
||||
hash = "sha256-XAAQc6oX9zy9MFze1UQbalUBfhbkY5u/0xOmc5J66kM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
qiskit-aer
|
||||
qiskit-ibmq-provider
|
||||
|
|
Loading…
Reference in a new issue