Unverified Commit 1b554166 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #249199 from fabaff/zeroconf-bump

python311Packages.zeroconf: 0.74.0 -> 0.79.0
parents 69588263 2b22c7d9
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
, copyDesktopItems
, wrapQtAppsHook
, fetchFromGitHub
, makeDesktopItem
, python3
, wrapQtAppsHook
}:

python3.pkgs.buildPythonApplication rec {
@@ -14,7 +14,7 @@ python3.pkgs.buildPythonApplication rec {
  src = fetchFromGitHub {
    owner = "casualsnek";
    repo = "onthespot";
    rev = "v${version}";
    rev = "refs/tags/v${version}";
    hash = "sha256-VaJBNsT7uNOGY43GnzhUqDQNiPoFZcc2UaIfOKgkufg=";
  };

@@ -54,11 +54,12 @@ python3.pkgs.buildPythonApplication rec {
    makeWrapperArgs+=("''${qtWrapperArgs[@]}")
  '';

  meta = {
  meta = with lib; {
    description = " QT based Spotify music downloader written in Python";
    homepage = "https://github.com/casualsnek/onthespot";
    license = lib.licenses.gpl2;
    maintainers = with lib.maintainers; [ onny ];
    platforms = lib.platforms.linux;
    changelog = "https://github.com/casualsnek/onthespot/releases/tag/v${version}";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ onny ];
    platforms = platforms.linux;
  };
}
+9 −13
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, defusedxml
, fetchFromGitHub
, protobuf
, pycryptodomex
, pyogg
, pytestCheckHook
, pythonRelaxDepsHook
, requests
, websocket-client
, pyogg
, zeroconf
, requests
, pycryptodomex
, pytestCheckHook
}:

buildPythonPackage rec {
@@ -20,10 +20,12 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "kokarare1212";
    repo = "librespot-python";
    rev = "v${version}";
    rev = "refs/tags/v${version}";
    hash = "sha256-k9qVsxjRlUZ7vCBx00quiAR7S+YkfyoZiAKVnOOG4xM=";
  };

  pythonRelaxDeps = true;

  nativeBuildInputs = [
    pythonRelaxDepsHook
  ];
@@ -38,13 +40,6 @@ buildPythonPackage rec {
    zeroconf
  ];

  pythonRelaxDeps = [
    "protobuf"
    "pyogg"
    "requests"
    "zeroconf"
  ];

  # Doesn't include any tests
  doCheck = false;

@@ -55,6 +50,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Open Source Spotify Client";
    homepage = "https://github.com/kokarare1212/librespot-python";
    changelog = "https://github.com/kokarare1212/librespot-python/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ onny ];
  };
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

buildPythonPackage rec {
  pname = "zeroconf";
  version = "0.74.0";
  version = "0.80.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
    owner = "jstasiak";
    repo = "python-zeroconf";
    rev = "refs/tags/${version}";
    hash = "sha256-0QmAq1+dRfRkomZgh4Q0YF20omQBDUTgGt8cP1L6cx0=";
    hash = "sha256-+NxLQGgTFHOPyOs8yoZvtZj0D42V6qma+PHgTGwPJsg=";
  };

  nativeBuildInputs = [