python311Packages.wavefile 1.5 -> 1.6.2 https://repology.org/project/python:wavefile/versions attrpath: python311Packages.wavefile 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] Going to be running update for following packages: - python3.11-wavefile-1.5 Press Enter key to continue... Running update for: - python3.11-wavefile-1.5: UPDATING ... - python3.11-wavefile-1.5: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/wavefile/default.nix b/pkgs/development/python-modules/wavefile/default.nix index 4ced79638a82..4bcadcf5f01a 100644 --- a/pkgs/development/python-modules/wavefile/default.nix +++ b/pkgs/development/python-modules/wavefile/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "wavefile"; - version = "1.5"; + version = "1.6.2"; format = "setuptools"; src = fetchFromGitHub { owner = "vokimon"; repo = "python-wavefile"; - rev = "python-wavefile-${version}"; - sha256 = "9sHj1gb93mCVpejRGSdLJzeFDCeTflZctE7kMWfqFrE="; + rev = "refs/tags/python-wavefile-${version}"; + sha256 = "sha256-TLSWhLARY+3sHkl2p3d3LDGzLu6DggjTJWFpyrwRXSI="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.5" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , fetchFromGitHub , setuptools , pyaudio , numpy , libsndfile , substituteAll }: buildPythonPackage rec { pname = "wavefile"; version = "1.6.2"; pyproject = true; src = fetchFromGitHub { owner = "vokimon"; repo = "python-wavefile"; rev = "refs/tags/python-wavefile-${version}"; hash = "sha256-TLSWhLARY+3sHkl2p3d3LDGzLu6DggjTJWFpyrwRXSI="; }; nativeBuildInputs = [ setuptools ]; buildInputs = [ pyaudio libsndfile ]; propagatedBuildInputs = [ numpy ]; nativeCheckInputs = [ pyaudio numpy libsndfile ]; patches = [ # Fix check error # OSError: libsndfile.so.1: cannot open shared object file: No such file or directory (substituteAll { src = ./libsndfile.py.patch; libsndfile = "${lib.getLib libsndfile}/lib/libsndfile${stdenv.hostPlatform.extensions.sharedLibrary}"; }) ]; doCheck = false; # all test files (test/wavefileTest.py) are failing pythonImportsCheck = [ "wavefile" ]; meta = with lib; { description = "Pythonic libsndfile wrapper to read and write audio files"; homepage = "https://github.com/vokimon/python-wavefile"; changelog = "https://github.com/vokimon/python-wavefile#version-history"; maintainers = with maintainers; [ yuu ]; license = licenses.gpl3Plus; }; }