71 lines
1.3 KiB
Nix
71 lines
1.3 KiB
Nix
{ lib
|
|
, pythonOlder
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
# Python Inputs
|
|
, h5py
|
|
, numpy
|
|
, psutil
|
|
, qiskit-terra
|
|
, retworkx
|
|
, scikit-learn
|
|
, scipy
|
|
, withPyscf ? false
|
|
, pyscf
|
|
# Check Inputs
|
|
, pytestCheckHook
|
|
, ddt
|
|
, pylatexenc
|
|
, qiskit-aer
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "qiskit-nature";
|
|
version = "0.3.1";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "qiskit";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-EkYppEOQGmRIxKC4ArXZb0b+p1gPGnP6AU8LbEbOpPo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
h5py
|
|
numpy
|
|
psutil
|
|
qiskit-terra
|
|
retworkx
|
|
scikit-learn
|
|
scipy
|
|
] ++ lib.optional withPyscf pyscf;
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
ddt
|
|
pylatexenc
|
|
qiskit-aer
|
|
];
|
|
|
|
pythonImportsCheck = [ "qiskit_nature" ];
|
|
|
|
pytestFlagsArray = [
|
|
"--durations=10"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_two_qubit_reduction" # unsure of failure reason. Might be related to recent cvxpy update?
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Software for developing quantum computing programs";
|
|
homepage = "https://qiskit.org";
|
|
downloadPage = "https://github.com/QISKit/qiskit-nature/releases";
|
|
changelog = "https://qiskit.org/documentation/release_notes.html";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|