Unverified Commit 8b0ac617 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

python3Packages.django-structlog: 9.1.1 -> 10.0.0 (#499432)

parents ca82feec 44280d5f
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -5,22 +5,19 @@
  setuptools,
  python,
  pkgs,
  pythonOlder,
}:
buildPythonPackage rec {
  pname = "django-structlog";
  version = "9.1.1";
  version = "10.0.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jrobichaud";
    repo = "django-structlog";
    tag = version;
    hash = "sha256-SEigOdlXZtfLAgRgGkv/eDNDAiiHd7YthRJ/H6e1v5U=";
    hash = "sha256-BNZ+nk2NK5x2YsTDZjH5BVizXAyLZhKp8zRvkWi068k=";
  };

  disabled = pythonOlder "3.9";

  dependencies = with python.pkgs; [
    colorama
    django
@@ -72,6 +69,8 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  __darwinAllowLocalNetworking = true;

  meta = with lib; {
    description = "Structured Logging for Django";
    homepage = "https://github.com/jrobichaud/django-structlog";