Commit 39c0ab7e authored by linsui's avatar linsui
Browse files

python3Packages.pytest-aio: 1.9.0 -> 2.0.0

parent bbea02aa
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -16,16 +16,16 @@

buildPythonPackage rec {
  pname = "pytest-aio";
  version = "1.9.0";
  version = "2.0.0";
  pyproject = true;

  disabled = pythonOlder "3.9";
  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "klen";
    repo = "pytest-aio";
    tag = version;
    hash = "sha256-6RxYn8/HAvXv1AEgSIEOLiaBkGgTcqQhWK+xbtxgj/o=";
    rev = "43681bcfc6d2ee07bf9397a1b42d1ccfbb891deb";
    hash = "sha256-IBtiy4pyXblIkYQunFO6HpBkCnBcEpTqcFtVELrULkk=";
  };

  build-system = [ poetry-core ];
@@ -42,6 +42,9 @@ buildPythonPackage rec {
    anyio
    hypothesis
    pytestCheckHook
  ]
  # https://github.com/python-trio/trio-asyncio/issues/160
  ++ lib.optionals (pythonOlder "3.14") [
    trio-asyncio
  ]
  ++ lib.concatAttrValues optional-dependencies;