nixpkgs/pkgs/tools/misc/nagstamon/default.nix

26 lines
746 B
Nix
Raw Normal View History

2017-06-01 17:30:43 +00:00
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "nagstamon-${version}";
2019-02-08 19:02:05 +00:00
version = "3.2.1";
2017-06-01 17:30:43 +00:00
src = fetchurl {
url = "https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz";
2019-02-08 19:02:05 +00:00
sha256 = "1048x55g3nlyyggn6a36xmj24w4hv08llg58f4hzc0fwg074cd58";
2017-06-01 17:30:43 +00:00
};
# Test assumes darwin
doCheck = false;
propagatedBuildInputs = with pythonPackages; [ configparser pyqt5 psutil requests
2019-02-08 19:02:05 +00:00
beautifulsoup4 keyring requests-kerberos kerberos lxml ];
2017-06-01 17:30:43 +00:00
meta = with stdenv.lib; {
description = "A status monitor for the desktop";
homepage = https://nagstamon.ifw-dresden.de/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
inherit version;
};
}