Merge pull request #324033 from liberodark/patch-1

nagstamon: 3.2.1 > 3.14.0
This commit is contained in:
Masum Reza 2024-07-15 22:33:03 +05:30 committed by GitHub
commit 0fb3d9d460
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 10 deletions

View File

@ -11457,6 +11457,12 @@
github = "liberatys"; github = "liberatys";
githubId = 35100156; githubId = 35100156;
}; };
liberodark = {
email = "liberodark@gmail.com";
github = "liberodark";
githubId = 4238928;
name = "liberodark";
};
libjared = { libjared = {
email = "jared@perrycode.com"; email = "jared@perrycode.com";
github = "libjared"; github = "libjared";

View File

@ -2,26 +2,24 @@
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
pname = "nagstamon"; pname = "nagstamon";
version = "3.2.1"; version = "3.14.0";
src = fetchurl { src = fetchurl {
url = "https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz"; url = "https://github.com/HenriWahl/Nagstamon/archive/refs/tags/v${version}.tar.gz";
sha256 = "1048x55g3nlyyggn6a36xmj24w4hv08llg58f4hzc0fwg074cd58"; sha256 = "sha256-9RxQ/rfvoyjSUsY4tmAkBdVQqZYi3X6PBzQYFIeenzA=";
}; };
# Test assumes darwin # Test assumes darwin
doCheck = false; doCheck = false;
propagatedBuildInputs = with pythonPackages; [ configparser pyqt5 psutil requests build-system = with pythonPackages; [ setuptools ];
beautifulsoup4 keyring requests-kerberos kerberos lxml ]; dependencies = with pythonPackages; [ configparser pyqt6 psutil requests
beautifulsoup4 keyring requests-kerberos lxml dbus-python python-dateutil pysocks ];
meta = with lib; { meta = with lib; {
description = "Status monitor for the desktop"; description = "Status monitor for the desktop";
homepage = "https://nagstamon.ifw-dresden.de/"; homepage = "https://nagstamon.de/";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ]; maintainers = with maintainers; [ pSub liberodark ];
# fails to install with:
# TypeError: cannot unpack non-iterable bool object
broken = true;
}; };
} }