2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchurl, pythonPackages }:
|
2017-06-01 10:30:43 -07:00
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "nagstamon";
|
2019-02-08 11:02:05 -08:00
|
|
|
version = "3.2.1";
|
2017-06-01 10:30:43 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz";
|
2019-02-08 11:02:05 -08:00
|
|
|
sha256 = "1048x55g3nlyyggn6a36xmj24w4hv08llg58f4hzc0fwg074cd58";
|
2017-06-01 10:30:43 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
# Test assumes darwin
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ configparser pyqt5 psutil requests
|
2019-02-08 11:02:05 -08:00
|
|
|
beautifulsoup4 keyring requests-kerberos kerberos lxml ];
|
2017-06-01 10:30:43 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-06-01 10:30:43 -07:00
|
|
|
description = "A status monitor for the desktop";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://nagstamon.ifw-dresden.de/";
|
2017-06-01 10:30:43 -07:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2021-01-08 21:23:48 -08:00
|
|
|
# fails to install with:
|
|
|
|
# TypeError: cannot unpack non-iterable bool object
|
|
|
|
broken = true;
|
2017-06-01 10:30:43 -07:00
|
|
|
};
|
|
|
|
}
|