satnogs-demo-display/default.nix

23 lines
430 B
Nix
Raw Normal View History

2023-12-14 12:19:33 +01:00
{ lib, python3Packages }:
with python3Packages;
buildPythonApplication {
pname = "satnogs-demo-display";
version = "1.0";
src = ./.;
propagatedBuildInputs = [
pillow
requests
pytz
2023-12-26 20:17:06 +01:00
geopy
2023-12-14 12:19:33 +01:00
];
meta = with lib; {
description = "Satnogs Demo Display";
homepage = "https://forgejo.zenerdio.de/sebastian/satnogs-demo-display";
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}