python310Packages.qiskit-machine-learning 0 -> 1 attrpath: python310Packages.qiskit-machine-learning 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/lrrlz9j05kap7lh3rspkz4pyd08ajddn-packages.json.drv building '/nix/store/lrrlz9j05kap7lh3rspkz4pyd08ajddn-packages.json.drv'... Going to be running update for following packages: - python3.10-qiskit-machine-learning-0.6.1 Press Enter key to continue... Running update for: - python3.10-qiskit-machine-learning-0.6.1: UPDATING ... - python3.10-qiskit-machine-learning-0.6.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/qiskit-machine-learning/default.nix b/pkgs/development/python-modules/qiskit-machine-learning/default.nix index da26fa3a2731..431c571ad9f8 100644 --- a/pkgs/development/python-modules/qiskit-machine-learning/default.nix +++ b/pkgs/development/python-modules/qiskit-machine-learning/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "qiskit-machine-learning"; - version = "0.6.1"; + version = "0.7.1"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "qiskit"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-oSLQvZGEq/nBj7ktDEq3BMk7xyYiLGpBDmKxuXtMTfs="; + hash = "sha256-qTHacEUTp0RY2piplE6XoYKpJyeFswTPBvjfQ9Gvwt0="; }; propagatedBuildInputs = [ No auto update branch exists Old version 0.6.1" not present in staging derivation file with contents: { lib , pythonOlder , buildPythonPackage , fetchFromGitHub # build-system , setuptools # Python Inputs , fastdtw , numpy , psutil , qiskit-terra , scikit-learn , sparse , torch # Check Inputs , pytestCheckHook , ddt , pytest-timeout , qiskit-aer }: buildPythonPackage rec { pname = "qiskit-machine-learning"; version = "0.7.1"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "qiskit"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-qTHacEUTp0RY2piplE6XoYKpJyeFswTPBvjfQ9Gvwt0="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ fastdtw numpy psutil torch qiskit-terra scikit-learn sparse ]; doCheck = false; # TODO: enable. Tests fail on unstable due to some multithreading issue? nativeCheckInputs = [ pytestCheckHook pytest-timeout ddt qiskit-aer ]; pythonImportsCheck = [ "qiskit_machine_learning" ]; pytestFlagsArray = [ "--durations=10" "--showlocals" "-vv" "--ignore=test/connectors/test_torch_connector.py" # TODO: fix, get multithreading errors with python3.9, segfaults ]; disabledTests = [ # Slow tests >10 s "test_readme_sample" "test_vqr_8" "test_vqr_7" "test_qgan_training_cg" "test_vqc_4" "test_classifier_with_circuit_qnn_and_cross_entropy_4" "test_vqr_4" "test_regressor_with_opflow_qnn_4" "test_qgan_save_model" "test_qgan_training_analytic_gradients" "test_qgan_training_run_algo_numpy" "test_ad_hoc_data" "test_qgan_training" ]; 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 ]; }; }