nixpkgs/pkgs/applications/audio/pyradio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
876 B
Nix
Raw Normal View History

2022-12-10 10:33:25 +00:00
{ lib
, python3Packages
, fetchFromGitHub
, installShellFiles
}:
2020-03-02 06:00:08 +00:00
python3Packages.buildPythonApplication rec {
pname = "pyradio";
2023-01-16 14:53:50 +00:00
version = "0.8.9.36";
2022-01-19 10:29:43 +00:00
2020-03-02 06:00:08 +00:00
src = fetchFromGitHub {
owner = "coderholic";
repo = pname;
2022-04-29 10:54:05 +01:00
rev = "refs/tags/${version}";
2023-01-16 14:53:50 +00:00
hash = "sha256-xEFjyVly1VyDz9ALtVwxxrEs856joP+pe/mappyKrPU=";
2020-03-02 06:00:08 +00:00
};
2022-12-10 10:33:25 +00:00
nativeBuildInputs = [
installShellFiles
];
2022-05-25 05:20:00 +01:00
propagatedBuildInputs = with python3Packages; [
requests
psutil
dnspython
];
2020-03-02 06:00:08 +00:00
checkPhase = ''
$out/bin/pyradio --help
'';
2022-05-25 05:20:00 +01:00
postInstall = ''
installManPage *.1
'';
2020-03-02 06:00:08 +00:00
meta = with lib; {
homepage = "http://www.coderholic.com/pyradio/";
description = "Curses based internet radio player";
2022-12-10 10:33:25 +00:00
changelog = "https://github.com/coderholic/pyradio/releases/tag/${version}";
2020-03-02 06:00:08 +00:00
license = licenses.mit;
maintainers = with maintainers; [ contrun ];
};
}