nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #205411 from r-ryantm/auto-update/pyradio

pyradio: 0.8.9.31 -> 0.8.9.32

authored by

Nikolay Korotkiy and committed by
GitHub
b6150f33 3d644da4

+11 -4
+11 -4
pkgs/applications/audio/pyradio/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub, installShellFiles }: 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + , installShellFiles 5 + }: 2 6 3 7 python3Packages.buildPythonApplication rec { 4 8 pname = "pyradio"; 5 - version = "0.8.9.31"; 9 + version = "0.8.9.32"; 6 10 7 11 src = fetchFromGitHub { 8 12 owner = "coderholic"; 9 13 repo = pname; 10 14 rev = "refs/tags/${version}"; 11 - sha256 = "sha256-9Fc42f0plduihXDDLXWBdt62maxDJ0cwumIvbiMcrGc="; 15 + hash = "sha256-1lczH8xTZV1XVVByLAGXJbjXd20JUJALIJJ3s9+orxM="; 12 16 }; 13 17 14 - nativeBuildInputs = [ installShellFiles ]; 18 + nativeBuildInputs = [ 19 + installShellFiles 20 + ]; 15 21 16 22 propagatedBuildInputs = with python3Packages; [ 17 23 requests ··· 36 30 meta = with lib; { 37 31 homepage = "http://www.coderholic.com/pyradio/"; 38 32 description = "Curses based internet radio player"; 33 + changelog = "https://github.com/coderholic/pyradio/releases/tag/${version}"; 39 34 license = licenses.mit; 40 35 maintainers = with maintainers; [ contrun ]; 41 36 };