Merge pull request #249199 from fabaff/zeroconf-bump

python311Packages.zeroconf: 0.74.0 -> 0.79.0

authored by

Fabian Affolter and committed by
GitHub
1b554166 69588263

+20 -23
+9 -8
pkgs/applications/misc/onthespot/default.nix
··· 1 1 { lib 2 - , python3 3 - , fetchFromGitHub 4 2 , copyDesktopItems 5 - , wrapQtAppsHook 3 + , fetchFromGitHub 6 4 , makeDesktopItem 5 + , python3 6 + , wrapQtAppsHook 7 7 }: 8 8 9 9 python3.pkgs.buildPythonApplication rec { ··· 14 14 src = fetchFromGitHub { 15 15 owner = "casualsnek"; 16 16 repo = "onthespot"; 17 - rev = "v${version}"; 17 + rev = "refs/tags/v${version}"; 18 18 hash = "sha256-VaJBNsT7uNOGY43GnzhUqDQNiPoFZcc2UaIfOKgkufg="; 19 19 }; 20 20 ··· 54 54 makeWrapperArgs+=("''${qtWrapperArgs[@]}") 55 55 ''; 56 56 57 - meta = { 57 + meta = with lib; { 58 58 description = " QT based Spotify music downloader written in Python"; 59 59 homepage = "https://github.com/casualsnek/onthespot"; 60 - license = lib.licenses.gpl2; 61 - maintainers = with lib.maintainers; [ onny ]; 62 - platforms = lib.platforms.linux; 60 + changelog = "https://github.com/casualsnek/onthespot/releases/tag/v${version}"; 61 + license = licenses.gpl2Only; 62 + maintainers = with maintainers; [ onny ]; 63 + platforms = platforms.linux; 63 64 }; 64 65 }
+9 -13
pkgs/development/python-modules/librespot/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchFromGitHub 4 3 , defusedxml 4 + , fetchFromGitHub 5 5 , protobuf 6 + , pycryptodomex 7 + , pyogg 8 + , pytestCheckHook 6 9 , pythonRelaxDepsHook 10 + , requests 7 11 , websocket-client 8 - , pyogg 9 12 , zeroconf 10 - , requests 11 - , pycryptodomex 12 - , pytestCheckHook 13 13 }: 14 14 15 15 buildPythonPackage rec { ··· 20 20 src = fetchFromGitHub { 21 21 owner = "kokarare1212"; 22 22 repo = "librespot-python"; 23 - rev = "v${version}"; 23 + rev = "refs/tags/v${version}"; 24 24 hash = "sha256-k9qVsxjRlUZ7vCBx00quiAR7S+YkfyoZiAKVnOOG4xM="; 25 25 }; 26 + 27 + pythonRelaxDeps = true; 26 28 27 29 nativeBuildInputs = [ 28 30 pythonRelaxDepsHook ··· 38 40 zeroconf 39 41 ]; 40 42 41 - pythonRelaxDeps = [ 42 - "protobuf" 43 - "pyogg" 44 - "requests" 45 - "zeroconf" 46 - ]; 47 - 48 43 # Doesn't include any tests 49 44 doCheck = false; 50 45 ··· 55 50 meta = with lib; { 56 51 description = "Open Source Spotify Client"; 57 52 homepage = "https://github.com/kokarare1212/librespot-python"; 53 + changelog = "https://github.com/kokarare1212/librespot-python/releases/tag/v${version}"; 58 54 license = licenses.asl20; 59 55 maintainers = with maintainers; [ onny ]; 60 56 };
+2 -2
pkgs/development/python-modules/zeroconf/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "zeroconf"; 18 - version = "0.74.0"; 18 + version = "0.80.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "jstasiak"; 25 25 repo = "python-zeroconf"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-0QmAq1+dRfRkomZgh4Q0YF20omQBDUTgGt8cP1L6cx0="; 27 + hash = "sha256-+NxLQGgTFHOPyOs8yoZvtZj0D42V6qma+PHgTGwPJsg="; 28 28 }; 29 29 30 30 nativeBuildInputs = [