pyradio: init at 0.8.7.1

This commit is contained in:
YI 2020-03-02 14:00:08 +08:00 committed by Jon
parent 6096d6b1ef
commit a4019eb9de
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "pyradio";
version = "0.8.7.1";
src = fetchFromGitHub {
owner = "coderholic";
repo = pname;
rev = version;
sha256 = "1f1dch5vrx2armrff19rh9gpqydspn3nvzc9p9j2jfi6gsxhppyb";
};
checkPhase = ''
$out/bin/pyradio --help
'';
meta = with lib; {
homepage = "http://www.coderholic.com/pyradio/";
description = "Curses based internet radio player";
license = licenses.mit;
maintainers = with maintainers; [ contrun ];
};
}

View File

@ -9445,6 +9445,8 @@ in
pipewire = callPackage ../development/libraries/pipewire {};
pyradio = callPackage ../applications/radio/pyradio {};
pyrex = pyrex095;
pyrex095 = callPackage ../development/interpreters/pyrex/0.9.5.nix { };