python310Packages.mido 1.2.10 -> 1.3.0 https://repology.org/project/python:mido/versions attrpath: python310Packages.mido 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/7lblcmz6yvvarym0ad0q6ljamyyl3359-packages.json.drv building '/nix/store/7lblcmz6yvvarym0ad0q6ljamyyl3359-packages.json.drv'... Going to be running update for following packages: - python3.10-mido-1.2.10 Press Enter key to continue... Running update for: - python3.10-mido-1.2.10: UPDATING ... - python3.10-mido-1.2.10: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/mido/default.nix b/pkgs/development/python-modules/mido/default.nix index 9b9b25ee3768..39c8ba78c8fd 100644 --- a/pkgs/development/python-modules/mido/default.nix +++ b/pkgs/development/python-modules/mido/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "mido"; - version = "1.2.10"; + version = "1.3.0"; src = fetchPypi { inherit pname version; - sha256 = "17b38a8e4594497b850ec6e78b848eac3661706bfc49d484a36d91335a373499"; + sha256 = "sha256-hCguOs40vKP5hCINstvLmCRc/q+4VCYMAuAAdQ3Khqo="; }; patches = [ No auto update branch exists Old version 1.2.10" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchPypi , substituteAll , portmidi , python-rtmidi , pytestCheckHook , setuptools , setuptools-scm }: buildPythonPackage rec { pname = "mido"; version = "1.3.0"; format = "pyproject"; src = fetchPypi { inherit pname version; sha256 = "sha256-hCguOs40vKP5hCINstvLmCRc/q+4VCYMAuAAdQ3Khqo="; }; patches = [ (substituteAll { src = ./libportmidi-cdll.patch; libportmidi = "${portmidi.out}/lib/libportmidi${stdenv.targetPlatform.extensions.sharedLibrary}"; }) ]; nativeBuildInputs = [ setuptools setuptools-scm ]; propagatedBuildInputs = [ python-rtmidi ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "mido" ]; meta = with lib; { description = "MIDI Objects for Python"; homepage = "https://mido.readthedocs.io"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }