python311Packages.qiskit-finance 0.3.4 -> 0.4.0 https://repology.org/project/python:qiskit-finance/versions attrpath: python311Packages.qiskit-finance Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/rzhgxawkbpl057b5ihcgq6bsrhkzhd2z-packages.json.drv building '/nix/store/rzhgxawkbpl057b5ihcgq6bsrhkzhd2z-packages.json.drv'... Going to be running update for following packages: - python3.11-qiskit-finance-0.3.4 Press Enter key to continue... Running update for: - python3.11-qiskit-finance-0.3.4: UPDATING ... - python3.11-qiskit-finance-0.3.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/qiskit-finance/default.nix b/pkgs/development/python-modules/qiskit-finance/default.nix index 559ed8f69bbe..79df4e4a007d 100644 --- a/pkgs/development/python-modules/qiskit-finance/default.nix +++ b/pkgs/development/python-modules/qiskit-finance/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "qiskit-finance"; - version = "0.3.4"; + version = "0.4.0"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -31,7 +31,7 @@ buildPythonPackage rec { owner = "qiskit"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-Ijoqn6nANLsEVKA5nycd1xbW5htJ+TQm6LkiMUWTsSs="; + hash = "sha256-V0o3U2Tn8OXTe2n84tqAhQql4sQ3UBZ8bLNt8S9Iz9w="; }; postPatch = '' No auto update branch exists Old version 0.3.4" not present in staging derivation file with contents: { lib , pythonOlder , buildPythonPackage , fetchFromGitHub # build-system , setuptools # 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.4.0"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "qiskit"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-V0o3U2Tn8OXTe2n84tqAhQql4sQ3UBZ8bLNt8S9Iz9w="; }; postPatch = '' substituteInPlace requirements.txt --replace "pandas<1.4.0" "pandas" ''; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ fastdtw numpy pandas psutil qiskit-terra qiskit-optimization quandl scikit-learn scipy yfinance ]; nativeCheckInputs = [ 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 ]; }; }