02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
74 lines
1.4 KiB
Nix
74 lines
1.4 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.4.3";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Qiskit";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-trThxcft6AOxalOglOKPwrJ23Bqt/FmMCAucKmNmB7c=";
|
|
};
|
|
|
|
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" # failure cause unclear
|
|
];
|
|
|
|
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";
|
|
sourceProvenance = with sourceTypes; [
|
|
fromSource
|
|
binaryNativeCode # drivers/gaussiand/gauopen/*.so
|
|
];
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|