commit 6ee02bd20ec6244ca79fbeecc9efac815c71ddb5
parent aab3828b8aca2305f04b4b683ef5cca42ad4657e
Author: Vincent Demeester <vincent@sbr.pm>
Date: Tue, 22 Mar 2022 11:13:08 +0100
nix/packages: update sugarjazy to 0.5.1
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/nix/packages/sugarjazy/default.nix b/nix/packages/sugarjazy/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, lib, fetchFromGitHub, poetry2nix, python310 }:
+{ stdenv, lib, fetchFromGitHub, poetry2nix, python310, python310Packages }:
poetry2nix.mkPoetryApplication rec {
pname = "sugarjazy";
- version = "0.3.0";
+ version = "0.5.1";
python = python310;
projectDir = ./.;
@@ -10,10 +10,12 @@ poetry2nix.mkPoetryApplication rec {
owner = "chmouel";
repo = "sugarjazy";
rev = "${version}";
- sha256 = "sha256-stGHznSTsEOmd/tGnO+Tg/FixyKvRkOpv54GTyvmQJg=";
+ sha256 = "sha256-GkfPpCRXta2aDUQT4c/tU+T1b/LoPM+k1GlopvgIpzQ=";
};
doCheck = false;
+ buildInputs = [ python310Packages.dateutil ];
+
meta = with lib; {
homepage = "https://github.com/chmouel/sugarjazy";
description = "parse json logs nicely";
diff --git a/nix/packages/sugarjazy/pyproject.toml b/nix/packages/sugarjazy/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sugarjazy"
-version = "0.3.0"
+version = "0.5.1"
description = "Parse json logs output from uber-go/zap library nicely"
authors = ["Chmouel Boudjnah <chmouel@chmouel.com>"]
maintainers = ["Chmouel Boudjnah <chmouel@chmouel.com>"]