Unverified Commit 758a9e10 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python313Packages.quart-cors: 0.7.0 -> 0.8.0 (#371036)

parents bf689c40 f2011296
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  pythonOlder,

  # build-system
  poetry-core,
  pdm-backend,

  # propagates
  quart,
@@ -19,17 +19,17 @@

buildPythonPackage rec {
  pname = "quart-cors";
  version = "0.7.0";
  version = "0.8.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pgjones";
    repo = "quart-cors";
    tag = version;
    hash = "sha256-qUzs0CTZHf3fGADBXPkd3CjZ6dnz1t3cTxflMErvz/k=";
    hash = "sha256-f+l+j0bjzi5FTwJzdXNyCgh3uT4zldpg22ZOgW1Wub4=";
  };

  build-system = [ poetry-core ];
  build-system = [ pdm-backend ];

  dependencies = [ quart ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ];