python3Packages.qiskit-aer: 0.5.1 -> 0.5.2

This commit is contained in:
Drew Risinger 2020-06-22 17:05:07 -04:00 committed by Jon
parent 50f9065e30
commit 1c8371b488

View File

@ -19,7 +19,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "qiskit-aer"; pname = "qiskit-aer";
version = "0.5.1"; version = "0.5.2";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
@ -28,7 +28,7 @@ buildPythonPackage rec {
repo = "qiskit-aer"; repo = "qiskit-aer";
rev = version; rev = version;
fetchSubmodules = true; # fetch muparserx and other required libraries fetchSubmodules = true; # fetch muparserx and other required libraries
sha256 = "0pbi8ldz8f1zm7pf2n5229g6kccriq21f24q9cb7bd4j5gdky5sk"; sha256 = "0vw6b69h8pvzxhaz3k8sg9ac792gz3kklfv0izs6ra83y1dfwhjz";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -48,14 +48,6 @@ buildPythonPackage rec {
pybind11 pybind11
]; ];
patches = [
(fetchpatch{
name = "qiskit-aer-pr-727-fix-random-unitary-test.patch";
url = "https://github.com/Qiskit/qiskit-aer/commit/09afb3b6b0710042ab65d88e863363f2c843dcb0.patch";
sha256 = "0521b7i4fpc5brqs08w381g3c655f9cbn6my1740jnk7dv5lhsv9";
})
];
postPatch = '' postPatch = ''
# remove dependency on PyPi cmake package, which isn't in Nixpkgs # remove dependency on PyPi cmake package, which isn't in Nixpkgs
substituteInPlace setup.py --replace "'cmake!=3.17,!=3.17.0'" "" substituteInPlace setup.py --replace "'cmake!=3.17,!=3.17.0'" ""
@ -85,6 +77,11 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
dontUseSetuptoolsCheck = true; # Otherwise runs tests twice dontUseSetuptoolsCheck = true; # Otherwise runs tests twice
disabledTests = [
# broken with cvxpy >= 1.1.0, see https://github.com/Qiskit/qiskit-aer/issues/779.
# TODO: Remove once resolved, probably next qiskit-aer version
"test_clifford"
];
preCheck = '' preCheck = ''
# Tests include a compiled "circuit" which is auto-built in $HOME # Tests include a compiled "circuit" which is auto-built in $HOME