diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-22 22:17:48 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-26 08:48:43 +0100 |
commit | 2ee6afdf3356dea2aebdd48d20dfe9eb07037ba3 (patch) | |
tree | 3902cbce2952eb2b22e608eafafc919a4d4c1029 /default.nix | |
parent | fff83bca1b5069f49af4d2e1dc1e1b1da60d7a61 (diff) |
feat: improve logging
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 897ac2e..d70e409 100644 --- a/default.nix +++ b/default.nix @@ -1,5 +1,5 @@ { pkgs ? import <nixpkgs> {} }: -with pkgs.python310Packages; +with pkgs.python313Packages; let sources = import ./npins; @@ -12,6 +12,7 @@ let requests ]; }; + logformat = import "${sources.logformat}" {}; in buildPythonApplication rec { pname = "osm-proposals"; @@ -27,6 +28,7 @@ buildPythonApplication rec { requests mwparserfromhell pywikiapi + logformat ]; postInstall = '' |