mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
43 lines
1017 B
Nix
43 lines
1017 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pillow
|
|
, xlib
|
|
, six
|
|
, xvfb-run
|
|
, sphinx
|
|
, gobject-introspection
|
|
, pygobject3
|
|
, gtk3
|
|
, libayatana-appindicator }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pystray";
|
|
version = "0.19.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moses-palmer";
|
|
repo = "pystray";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8B178MSe4ujlnGBmQhIu+BoAh1doP9V5cL0ermLQTvs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ gobject-introspection sphinx ];
|
|
propagatedBuildInputs = [ pillow xlib six pygobject3 gtk3 libayatana-appindicator ];
|
|
nativeCheckInputs = [ xvfb-run ];
|
|
|
|
checkPhase = ''
|
|
rm tests/icon_tests.py # test needs user input
|
|
|
|
xvfb-run -s '-screen 0 800x600x24' python setup.py test
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/moses-palmer/pystray";
|
|
description = "This library allows you to create a system tray icon";
|
|
license = with licenses; [ gpl3Plus lgpl3Plus ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jojosch ];
|
|
};
|
|
}
|