54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, python3Packages
|
||
|
, fetchFromGitHub
|
||
|
, installShellFiles
|
||
|
}:
|
||
|
|
||
|
python3Packages.buildPythonApplication rec {
|
||
|
pname = "pyradio";
|
||
|
version = "0.9.3.11.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "coderholic";
|
||
|
repo = "pyradio";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-k/MgvdR4ed9qMLx52AAK7Aq963/qkUyF+bam06yCZHc=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
installShellFiles
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = with python3Packages; [
|
||
|
dnspython
|
||
|
netifaces
|
||
|
psutil
|
||
|
python-dateutil
|
||
|
requests
|
||
|
rich
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
# Disable update check
|
||
|
substituteInPlace pyradio/config \
|
||
|
--replace-fail "distro = None" "distro = NixOS"
|
||
|
'';
|
||
|
|
||
|
checkPhase = ''
|
||
|
$out/bin/pyradio --help
|
||
|
'';
|
||
|
|
||
|
postInstall = ''
|
||
|
installManPage *.1
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "http://www.coderholic.com/pyradio/";
|
||
|
description = "Curses based internet radio player";
|
||
|
mainProgram = "pyradio";
|
||
|
changelog = "https://github.com/coderholic/pyradio/releases/tag/${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ contrun yayayayaka ];
|
||
|
};
|
||
|
}
|