mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "pyradio";
|
|
version = "0.9.3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coderholic";
|
|
repo = "pyradio";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-EoHCOg4nPkKRSFX/3AUKJaXzS6J1quwtv+mKeKBu5Ns=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|