depot/third_party/nixpkgs/pkgs/tools/misc/nagstamon/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

27 lines
813 B
Nix

{ lib, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
pname = "nagstamon";
version = "3.2.1";
src = fetchurl {
url = "https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz";
sha256 = "1048x55g3nlyyggn6a36xmj24w4hv08llg58f4hzc0fwg074cd58";
};
# Test assumes darwin
doCheck = false;
propagatedBuildInputs = with pythonPackages; [ configparser pyqt5 psutil requests
beautifulsoup4 keyring requests-kerberos kerberos lxml ];
meta = with lib; {
description = "Status monitor for the desktop";
homepage = "https://nagstamon.ifw-dresden.de/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
# fails to install with:
# TypeError: cannot unpack non-iterable bool object
broken = true;
};
}