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
|
||||
pname = "nagstamon";
|
||||
version = "v3.8.0";
|
||||
in python39Packages.buildPythonApplication rec {
|
||||
version = "v3.10.1";
|
||||
in python310Packages.buildPythonApplication rec {
|
||||
inherit pname;
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "HenriWahl";
|
||||
repo = "Nagstamon";
|
||||
rev = "${version}";
|
||||
sha256 = "0a8aqw44z58pabsgxlvndnmzzvc50wrb4g12yp6zgajn40b2l8pw";
|
||||
rev = version;
|
||||
sha256 = "sha256-TdwvHQDDQqZ6uvdCTJCMCdivM/vaZpMrpLRMKN2y76Y=";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
@ -21,17 +21,18 @@ in python39Packages.buildPythonApplication rec {
|
|||
wrapQtApp $out/bin/nagstamon.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python39Packages; [
|
||||
beautifulsoup4
|
||||
configparser
|
||||
dateutil
|
||||
keyring
|
||||
lxml
|
||||
psutil
|
||||
pyqt5_with_qtmultimedia
|
||||
requests
|
||||
setuptools
|
||||
xlib
|
||||
propagatedBuildInputs = [
|
||||
python310Packages.beautifulsoup4
|
||||
python310Packages.configparser
|
||||
python310Packages.dateutil
|
||||
python310Packages.keyring
|
||||
python310Packages.lxml
|
||||
python310Packages.psutil
|
||||
python310Packages.pyqt5_with_qtmultimedia
|
||||
python310Packages.requests
|
||||
python310Packages.requests-kerberos
|
||||
python310Packages.setuptools
|
||||
python310Packages.xlib
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
@ -42,4 +43,3 @@ in python39Packages.buildPythonApplication rec {
|
|||
inherit version;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue