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