mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
28 lines
819 B
Nix
28 lines
819 B
Nix
{ lib, stdenv, 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 = "A status monitor for the desktop";
|
|
homepage = "https://nagstamon.ifw-dresden.de/";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ pSub ];
|
|
# fails to install with:
|
|
# TypeError: cannot unpack non-iterable bool object
|
|
broken = true;
|
|
};
|
|
}
|