fix(nagstamon): fix package and update to 3.10
This commit is contained in:
parent
b528bbd88f
commit
f40031327f
1 changed files with 17 additions and 17 deletions
|
@ -1,17 +1,17 @@
|
||||||
{ lib, fetchFromGitHub, python39Packages, wrapQtAppsHook }:
|
{ lib, fetchFromGitHub, python310Packages, wrapQtAppsHook, pkgs }:
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "nagstamon";
|
pname = "nagstamon";
|
||||||
version = "v3.8.0";
|
version = "v3.10.1";
|
||||||
in python39Packages.buildPythonApplication rec {
|
in python310Packages.buildPythonApplication rec {
|
||||||
inherit pname;
|
inherit pname;
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "HenriWahl";
|
owner = "HenriWahl";
|
||||||
repo = "Nagstamon";
|
repo = "Nagstamon";
|
||||||
rev = "${version}";
|
rev = version;
|
||||||
sha256 = "0a8aqw44z58pabsgxlvndnmzzvc50wrb4g12yp6zgajn40b2l8pw";
|
sha256 = "sha256-TdwvHQDDQqZ6uvdCTJCMCdivM/vaZpMrpLRMKN2y76Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -21,17 +21,18 @@ in python39Packages.buildPythonApplication rec {
|
||||||
wrapQtApp $out/bin/nagstamon.py
|
wrapQtApp $out/bin/nagstamon.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python39Packages; [
|
propagatedBuildInputs = [
|
||||||
beautifulsoup4
|
python310Packages.beautifulsoup4
|
||||||
configparser
|
python310Packages.configparser
|
||||||
dateutil
|
python310Packages.dateutil
|
||||||
keyring
|
python310Packages.keyring
|
||||||
lxml
|
python310Packages.lxml
|
||||||
psutil
|
python310Packages.psutil
|
||||||
pyqt5_with_qtmultimedia
|
python310Packages.pyqt5_with_qtmultimedia
|
||||||
requests
|
python310Packages.requests
|
||||||
setuptools
|
python310Packages.requests-kerberos
|
||||||
xlib
|
python310Packages.setuptools
|
||||||
|
python310Packages.xlib
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -42,4 +43,3 @@ in python39Packages.buildPythonApplication rec {
|
||||||
inherit version;
|
inherit version;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue