Skip to content

Commit

Permalink
nagstamon: 3.14.0 -> 3.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Nov 26, 2024
1 parent 697286b commit a848fde
Showing 1 changed file with 42 additions and 18 deletions.
60 changes: 42 additions & 18 deletions pkgs/by-name/na/nagstamon/package.nix
Original file line number Diff line number Diff line change
@@ -1,43 +1,67 @@
{
lib,
fetchurl,
fetchFromGitHub,
python3Packages,
qt6Packages,
}:

python3Packages.buildPythonApplication rec {
pname = "nagstamon";
version = "3.14.0";
version = "3.16.2";

src = fetchurl {
url = "https://github.com/HenriWahl/Nagstamon/archive/refs/tags/v${version}.tar.gz";
sha256 = "sha256-9RxQ/rfvoyjSUsY4tmAkBdVQqZYi3X6PBzQYFIeenzA=";
src = fetchFromGitHub {
owner = "HenriWahl";
repo = "Nagstamon";
rev = "refs/tags/v${version}";
hash = "sha256-9w8ux+AeSg0vDhnk28/2eCE2zYLvAjD7mB0pJBMFs2I=";
};

# Test assumes darwin
doCheck = false;

build-system = with python3Packages; [ setuptools ];

nativeBuildInputs = [ qt6Packages.wrapQtAppsHook ];

buildInputs = [
qt6Packages.qtmultimedia
qt6Packages.qtsvg
];

dontWrapQtApps = true;

preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';

dependencies = with python3Packages; [
configparser
pyqt6
psutil
requests
arrow
beautifulsoup4
configparser
dbus-python
keyring
requests-kerberos
lxml
dbus-python
python-dateutil
psutil
pyqt6
pysocks
python-dateutil
requests
requests-kerberos
];

nativeCheckInputs = with python3Packages; [
pylint
pytestCheckHook
];

meta = with lib; {
meta = {
description = "Status monitor for the desktop";
homepage = "https://nagstamon.de/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [
changelog = "https://github.com/HenriWahl/Nagstamon/releases/tag/v${version}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
pSub
liberodark
];
mainProgram = "nagstamon.py";
# NameError: name 'bdist_rpm_options' is not defined. Did you mean: 'bdist_mac_options'?
badPlatforms = [ lib.systems.inspect.patterns.isDarwin ];
};
}

0 comments on commit a848fde

Please sign in to comment.