discord-rich-presence-plex: init at version 2.16.0
This commit is contained in:
62
pkgs/by-name/di/discord-rich-presence-plex/package.nix
Normal file
62
pkgs/by-name/di/discord-rich-presence-plex/package.nix
Normal file
@@ -0,0 +1,62 @@
|
||||
{
|
||||
lib,
|
||||
python3Packages,
|
||||
python3,
|
||||
fetchFromGitHub,
|
||||
makeWrapper,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "discord-rich-presence-plex";
|
||||
version = "2.16.0";
|
||||
format = "other";
|
||||
src = fetchFromGitHub {
|
||||
owner = "phin05";
|
||||
repo = "discord-rich-presence-plex";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-e1r0w72IOEY5XsjANkAHbfPYEf1B8n6KYVLMWFSLs0g=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
dontBuild = true;
|
||||
dontUseSetuptoolsBuild = true;
|
||||
dontUseSetuptoolsCheck = true;
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
requests
|
||||
pillow
|
||||
plexapi
|
||||
pyyaml
|
||||
websocket-client
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/lib/discord-rich-presence-plex
|
||||
cp -r * $out/lib/discord-rich-presence-plex/
|
||||
|
||||
mkdir -p $out/bin
|
||||
makeWrapper ${lib.getExe python3} \
|
||||
$out/bin/discord-rich-presence-plex \
|
||||
--add-flags "$out/lib/discord-rich-presence-plex/main.py" \
|
||||
--prefix PYTHONPATH : "$out/lib/discord-rich-presence-plex:$PYTHONPATH" \
|
||||
--set DRPP_NO_PIP_INSTALL "true"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/phin05/discord-rich-presence-plex";
|
||||
changelog = "https://github.com/phin05/discord-rich-presence-plex/releases/tag/v${version}";
|
||||
license = lib.licenses.gpl3Only;
|
||||
description = "Displays your Plex status on Discord using Rich Presence";
|
||||
maintainers = with lib.maintainers; [ hogcycle ];
|
||||
mainProgram = "discord-rich-presence-plex";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user