23 buildPythonPackage rec {
24 pname = "qiskit-finance";
27 disabled = pythonOlder "3.6";
29 src = fetchFromGitHub {
32 rev = "refs/tags/${version}";
33 hash = "sha256-Ijoqn6nANLsEVKA5nycd1xbW5htJ+TQm6LkiMUWTsSs=";
37 substituteInPlace requirements.txt --replace "pandas<1.4.0" "pandas"
40 propagatedBuildInputs = [
60 pythonImportsCheck = [ "qiskit_finance" ];
62 # Fail due to approximation error, ~1-2%
65 # Tests fail b/c require internet connection. Stalls tests if enabled.
75 description = "Software for developing quantum computing programs";
76 homepage = "https://qiskit.org";
77 downloadPage = "https://github.com/QISKit/qiskit-optimization/releases";
78 changelog = "https://qiskit.org/documentation/release_notes.html";
79 license = licenses.asl20;
80 maintainers = with maintainers; [ drewrisinger ];