nixpkgs/pkgs/tools/misc/nagstamon/default.nix
Matthew Bauer 1592e03aba treewide: rename bad filenames
Most of these can easily be moved to subdirectories of other
directories. This helps reduce clutter in the main trees.
2018-04-17 15:42:25 -05:00

26 lines
719 B
Nix

{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "nagstamon-${version}";
version = "2.0.1";
src = fetchurl {
url = "https://nagstamon.ifw-dresden.de/files/stable/Nagstamon-${version}.tar.gz";
sha256 = "3d4b22190d47250b175a4a70b12391c694ba2399832320887e5909e1ce3dfd7b";
};
# Test assumes darwin
doCheck = false;
propagatedBuildInputs = with pythonPackages; [ configparser pyqt5 psutil requests
beautifulsoup4 ];
meta = with stdenv.lib; {
description = "A status monitor for the desktop";
homepage = https://nagstamon.ifw-dresden.de/;
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
inherit version;
};
}