Unverified Commit d8f8b0d1 authored by Maciej Krüger's avatar Maciej Krüger Committed by GitHub
Browse files

python3.pkgs.webargs: fix tests with newer pytest-asyncio (#438337)

parents 638f9c8f ad7c0cb8
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
  pyramid,
  falcon,
  aiohttp,
  fetchpatch,
}:

buildPythonPackage rec {
@@ -28,6 +29,13 @@ buildPythonPackage rec {
    hash = "sha256-DGF97BntTx/2skfNc4VelJ2HBS1xkAk4tx8Mr9kvGRs=";
  };

  patches = [
    (fetchpatch {
      url = "https://github.com/marshmallow-code/webargs/commit/a6a5043ee34b0a22885b3625de6d4fdffc3b715b.patch";
      hash = "sha256-EFe76SAklgmBjfM6K8PkB0vHMCSlZ9EKAW9AbnxKmPA=";
    })
  ];

  build-system = [ flit-core ];

  dependencies = [ marshmallow ];