64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
|
{ lib
|
||
|
, pythonOlder
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
# Python Inputs
|
||
|
, decorator
|
||
|
, docplex
|
||
|
, networkx
|
||
|
, numpy
|
||
|
, qiskit-terra
|
||
|
, scipy
|
||
|
# Check Inputs
|
||
|
, pytestCheckHook
|
||
|
, ddt
|
||
|
, pylatexenc
|
||
|
, qiskit-aer
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "qiskit-optimization";
|
||
|
version = "0.2.3";
|
||
|
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "qiskit";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-y/j/cerzMAKVjehh1LUqYe1Juoa4lIxH2qS165S9img=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace requirements.txt --replace "networkx>=2.2,<2.6" "networkx"
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
docplex
|
||
|
decorator
|
||
|
networkx
|
||
|
numpy
|
||
|
qiskit-terra
|
||
|
scipy
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pytestCheckHook
|
||
|
ddt
|
||
|
pylatexenc
|
||
|
qiskit-aer
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "qiskit_optimization" ];
|
||
|
pytestFlagsArray = [ "--durations=10" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Software for developing quantum computing programs";
|
||
|
homepage = "https://qiskit.org";
|
||
|
downloadPage = "https://github.com/QISKit/qiskit-optimization/releases";
|
||
|
changelog = "https://qiskit.org/documentation/release_notes.html";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ drewrisinger ];
|
||
|
};
|
||
|
}
|