mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
pyradio: init at 0.8.7.1
This commit is contained in:
parent
6096d6b1ef
commit
a4019eb9de
24
pkgs/applications/radio/pyradio/default.nix
Normal file
24
pkgs/applications/radio/pyradio/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user