From 7674933d95d04b08c26db7eae180f0f1d9bf9259 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 10 Dec 2022 07:05:15 +0000 Subject: [PATCH 1/2] pyradio: 0.8.9.31 -> 0.8.9.32 --- pkgs/applications/audio/pyradio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/pyradio/default.nix b/pkgs/applications/audio/pyradio/default.nix index 8b76132a847f..057e46ec4b7f 100644 --- a/pkgs/applications/audio/pyradio/default.nix +++ b/pkgs/applications/audio/pyradio/default.nix @@ -2,13 +2,13 @@ python3Packages.buildPythonApplication rec { pname = "pyradio"; - version = "0.8.9.31"; + version = "0.8.9.32"; src = fetchFromGitHub { owner = "coderholic"; repo = pname; rev = "refs/tags/${version}"; - sha256 = "sha256-9Fc42f0plduihXDDLXWBdt62maxDJ0cwumIvbiMcrGc="; + sha256 = "sha256-1lczH8xTZV1XVVByLAGXJbjXd20JUJALIJJ3s9+orxM="; }; nativeBuildInputs = [ installShellFiles ]; From af2a04eb3194d3e9aead88e9a55f1d15d797f4da Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 10 Dec 2022 11:33:25 +0100 Subject: [PATCH 2/2] pyradio: add changelog to meta --- pkgs/applications/audio/pyradio/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/pyradio/default.nix b/pkgs/applications/audio/pyradio/default.nix index 057e46ec4b7f..8038ef5bf937 100644 --- a/pkgs/applications/audio/pyradio/default.nix +++ b/pkgs/applications/audio/pyradio/default.nix @@ -1,4 +1,8 @@ -{ lib, python3Packages, fetchFromGitHub, installShellFiles }: +{ lib +, python3Packages +, fetchFromGitHub +, installShellFiles +}: python3Packages.buildPythonApplication rec { pname = "pyradio"; @@ -8,10 +12,12 @@ python3Packages.buildPythonApplication rec { owner = "coderholic"; repo = pname; rev = "refs/tags/${version}"; - sha256 = "sha256-1lczH8xTZV1XVVByLAGXJbjXd20JUJALIJJ3s9+orxM="; + hash = "sha256-1lczH8xTZV1XVVByLAGXJbjXd20JUJALIJJ3s9+orxM="; }; - nativeBuildInputs = [ installShellFiles ]; + nativeBuildInputs = [ + installShellFiles + ]; propagatedBuildInputs = with python3Packages; [ requests @@ -30,6 +36,7 @@ python3Packages.buildPythonApplication rec { meta = with lib; { homepage = "http://www.coderholic.com/pyradio/"; description = "Curses based internet radio player"; + changelog = "https://github.com/coderholic/pyradio/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ contrun ]; };