python3Packages.qiskit: 0.19.6 -> 0.20.0
This commit is contained in:
parent
b5070a4fd6
commit
4dee731f4a
@ -15,7 +15,7 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "qiskit";
|
pname = "qiskit";
|
||||||
# NOTE: This version denotes a specific set of subpackages. See https://qiskit.org/documentation/release_notes.html#version-history
|
# NOTE: This version denotes a specific set of subpackages. See https://qiskit.org/documentation/release_notes.html#version-history
|
||||||
version = "0.19.6";
|
version = "0.20.0";
|
||||||
|
|
||||||
disabled = pythonOlder "3.5";
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||||||
owner = "Qiskit";
|
owner = "Qiskit";
|
||||||
repo = "qiskit";
|
repo = "qiskit";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0liby6ffgrla6wr4k742qkg8m80im372p6hmr4gkz47nmc76zy1i";
|
sha256 = "1r23pjnql49gczf4k4m6ir5rr95gqdxjrks60p8a93d243mxx3c9";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -36,14 +36,21 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
dontUseSetuptoolsCheck = true;
|
dontUseSetuptoolsCheck = true;
|
||||||
# following doesn't work b/c they are distributed across different nix sitePackages dirs. Tested with pytest though.
|
|
||||||
pythonImportsCheck = [ "qiskit" "qiskit.circuit" "qiskit.ignis" "qiskit.providers.aer" "qiskit.aqua" ];
|
|
||||||
|
|
||||||
meta = {
|
pythonImportsCheck = [
|
||||||
|
"qiskit"
|
||||||
|
"qiskit.aqua"
|
||||||
|
"qiskit.circuit"
|
||||||
|
"qiskit.ignis"
|
||||||
|
"qiskit.providers.aer"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "Software for developing quantum computing programs";
|
description = "Software for developing quantum computing programs";
|
||||||
homepage = "https://qiskit.org";
|
homepage = "https://qiskit.org";
|
||||||
downloadPage = "https://github.com/QISKit/qiskit/releases";
|
downloadPage = "https://github.com/QISKit/qiskit/releases";
|
||||||
license = lib.licenses.asl20;
|
changelog = "https://qiskit.org/documentation/release_notes.html";
|
||||||
maintainers = with lib.maintainers; [ drewrisinger pandaman ];
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ drewrisinger pandaman ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user