python3Packages.qiskit-finance: 0.3.4 -> 0.4.0

https://qiskit.org/documentation/release_notes.html
This commit is contained in:
Martin Weinelt
2023-12-20 20:45:14 +01:00
parent 045061e1ea
commit cf1f1a71fd
@@ -2,6 +2,10 @@
, pythonOlder
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
# Python Inputs
, fastdtw
, numpy
@@ -22,8 +26,8 @@
buildPythonPackage rec {
pname = "qiskit-finance";
version = "0.3.4";
format = "setuptools";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.6";
@@ -31,13 +35,17 @@ buildPythonPackage rec {
owner = "qiskit";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-Ijoqn6nANLsEVKA5nycd1xbW5htJ+TQm6LkiMUWTsSs=";
hash = "sha256-V0o3U2Tn8OXTe2n84tqAhQql4sQ3UBZ8bLNt8S9Iz9w=";
};
postPatch = ''
substituteInPlace requirements.txt --replace "pandas<1.4.0" "pandas"
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
fastdtw
numpy