nagstamon: move to by-name

Co-authored-by: liberodark <liberodark@gmail.com>
This commit is contained in:
Gaetan Lepage 2024-11-22 00:26:44 +01:00
parent 17840289bd
commit 250ac961c1
2 changed files with 4 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{ lib, fetchurl, pythonPackages }:
{ lib, fetchurl, python3Packages }:
pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "nagstamon";
version = "3.14.0";
@ -12,8 +12,8 @@ pythonPackages.buildPythonApplication rec {
# Test assumes darwin
doCheck = false;
build-system = with pythonPackages; [ setuptools ];
dependencies = with pythonPackages; [ configparser pyqt6 psutil requests
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [ configparser pyqt6 psutil requests
beautifulsoup4 keyring requests-kerberos lxml dbus-python python-dateutil pysocks ];
meta = with lib; {

View File

@ -4258,10 +4258,6 @@ with pkgs;
mx-puppet-discord = callPackage ../servers/mx-puppet-discord { };
nagstamon = callPackage ../tools/misc/nagstamon {
pythonPackages = python3Packages;
};
nanoemoji = with python3Packages; toPythonApplication nanoemoji;
nbtscanner = callPackage ../tools/security/nbtscanner {