79 lines
1.5 KiB
Nix
79 lines
1.5 KiB
Nix
|
{ lib
|
||
|
, pythonOlder
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
# Python Inputs
|
||
|
, fastdtw
|
||
|
, numpy
|
||
|
, pandas
|
||
|
, psutil
|
||
|
, qiskit-terra
|
||
|
, qiskit-optimization
|
||
|
, scikit-learn
|
||
|
, scipy
|
||
|
, quandl
|
||
|
, yfinance
|
||
|
# Check Inputs
|
||
|
, pytestCheckHook
|
||
|
, ddt
|
||
|
, pytest-timeout
|
||
|
, qiskit-aer
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "qiskit-finance";
|
||
|
version = "0.2.1";
|
||
|
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "qiskit";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-fEhc/01j6iYYwS6mLle+TpX9j0DVn12oPUFamEecoAY=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
fastdtw
|
||
|
numpy
|
||
|
pandas
|
||
|
psutil
|
||
|
qiskit-terra
|
||
|
qiskit-optimization
|
||
|
quandl
|
||
|
scikit-learn
|
||
|
scipy
|
||
|
yfinance
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pytestCheckHook
|
||
|
pytest-timeout
|
||
|
ddt
|
||
|
qiskit-aer
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "qiskit_finance" ];
|
||
|
disabledTests = [
|
||
|
# Fail due to approximation error, ~1-2%
|
||
|
"test_application"
|
||
|
|
||
|
# Tests fail b/c require internet connection. Stalls tests if enabled.
|
||
|
"test_exchangedata"
|
||
|
"test_yahoo"
|
||
|
"test_wikipedia"
|
||
|
];
|
||
|
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 ];
|
||
|
};
|
||
|
}
|