Add status page to monitoring-3
This commit is contained in:
@@ -3,6 +3,7 @@ self: super: {
|
||||
flask-excel = self.python3.pkgs.callPackage ./flask-excel {};
|
||||
pyexcel-xlsx = self.python3.pkgs.callPackage ./pyexcel-xlsx {};
|
||||
pyexcel-webio = self.python3.pkgs.callPackage ./pyexcel-webio {};
|
||||
uptimestatus = self.python3.pkgs.callPackage ./uptimestatus {};
|
||||
wetter = self.python3.pkgs.callPackage ./wetter {
|
||||
inherit (self) python2 pkgconfig libsass;
|
||||
};
|
||||
|
32
pkgs/uptimestatus/default.nix
Normal file
32
pkgs/uptimestatus/default.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
flask,
|
||||
requests,
|
||||
python3,
|
||||
}:
|
||||
|
||||
let
|
||||
src = fetchGit {
|
||||
url = "https://git.clerie.de/clerie/uptime-status.git";
|
||||
rev = "caacaced97617838bbd9b7b91a4e3d06e411139b";
|
||||
};
|
||||
pname = "uptimestatus";
|
||||
version = "0.0.1";
|
||||
|
||||
|
||||
in buildPythonPackage rec {
|
||||
inherit src pname version;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
flask
|
||||
requests
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/${python3.sitePackages}/uptimestatus
|
||||
cp -r uptimestatus/static $out/${python3.sitePackages}/uptimestatus/static
|
||||
cp -r uptimestatus/templates $out/${python3.sitePackages}/uptimestatus/templates
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
}
|
Reference in New Issue
Block a user