python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / nagstamon / default.nix
blobe9f76dbf22d9f0be867e68d2c03e8fce0724014c
1 { lib, fetchurl, pythonPackages }:
3 pythonPackages.buildPythonApplication rec {
4   pname = "nagstamon";
5   version = "3.2.1";
7   src = fetchurl {
8     url = "https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz";
9     sha256 = "1048x55g3nlyyggn6a36xmj24w4hv08llg58f4hzc0fwg074cd58";
10   };
12   # Test assumes darwin
13   doCheck = false;
15   propagatedBuildInputs = with pythonPackages; [ configparser pyqt5 psutil requests
16      beautifulsoup4 keyring requests-kerberos kerberos lxml ];
18   meta = with lib; {
19     description = "A status monitor for the desktop";
20     homepage = "https://nagstamon.ifw-dresden.de/";
21     license = licenses.gpl2;
22     maintainers = with maintainers; [ pSub ];
23     # fails to install with:
24     # TypeError: cannot unpack non-iterable bool object
25     broken = true;
26   };