Unverified Commit 716b412a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.reconplogger: 4.18.1 -> 5.0.0 (#509520)

parents ceaa7625 5dae3e65
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@
  testfixtures,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "reconplogger";
  version = "4.18.1";
  version = "5.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "omni-us";
    repo = "reconplogger";
    tag = "v${version}";
    hash = "sha256-kYNidF1sTC6WulX3HXMUm+TFJWvHgZj86Asmi6uIKRs=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-/+nPLji8iGTBpWTCR83JRfxMltMYjP62KrB+HRTQQE8=";
  };

  build-system = [ setuptools ];
@@ -52,4 +52,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})