nixpkgs/pkgs/applications/window-managers/i3/pystatus.nix

47 lines
1.6 KiB
Nix
Raw Normal View History

2018-04-11 07:42:26 +00:00
{ stdenv, fetchFromGitHub, libpulseaudio, python3Packages, extraLibs ? [] }:
2016-02-24 19:33:21 +00:00
python3Packages.buildPythonApplication rec {
2018-04-11 07:42:26 +00:00
# i3pystatus moved to rolling release:
# https://github.com/enkore/i3pystatus/issues/584
2019-02-16 21:30:37 +00:00
version = "unstable-2019-02-10";
2016-02-24 19:33:21 +00:00
pname = "i3pystatus";
disabled = !python3Packages.isPy3k;
2018-04-11 07:42:26 +00:00
src = fetchFromGitHub
{
owner = "enkore";
repo = "i3pystatus";
2019-02-16 21:30:37 +00:00
rev = "bcd8f12b18d491029fdd5bd0f433b4500fcdc68e";
sha256 = "0gw6sla73cid6gwxn2n4zmsg2svq5flf9zxly6x2rfljizgf0720";
2016-02-24 19:33:21 +00:00
};
propagatedBuildInputs = with python3Packages; [ keyring colour netifaces praw psutil basiciw ] ++
[ libpulseaudio ] ++ extraLibs;
2016-05-14 11:23:29 +00:00
libpulseaudioPath = stdenv.lib.makeLibraryPath [ libpulseaudio ];
ldWrapperSuffix = "--suffix LD_LIBRARY_PATH : \"${libpulseaudioPath}\"";
2018-04-14 10:12:30 +00:00
# LC_TIME != C results in locale.Error: unsupported locale setting
makeWrapperArgs = [ "--set LC_TIME C" ldWrapperSuffix ]; # libpulseaudio.so is loaded manually
2016-02-24 19:33:21 +00:00
postInstall = ''
makeWrapper ${python3Packages.python.interpreter} $out/bin/${pname}-python-interpreter \
--prefix PYTHONPATH : "$PYTHONPATH" \
${ldWrapperSuffix}
'';
# no tests in tarball
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/enkore/i3pystatus;
description = "A complete replacement for i3status";
longDescription = ''
i3pystatus is a growing collection of python scripts for status output compatible
to i3status / i3bar of the i3 window manager.
'';
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.igsha ];
};
}