From 06252e5ec442039e81e10f75be16eb3c657f1e36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 24 Jan 2025 16:58:36 -0800 Subject: [PATCH] python313Packages.pytest-aiohttp: 1.0.5 -> 1.1.0 Diff: https://github.com/aio-libs/pytest-aiohttp/compare/refs/tags/v1.0.5...v1.1.0 Changelog: https://github.com/aio-libs/pytest-aiohttp/blob/refs/tags/v1.1.0/CHANGES.rst --- .../python-modules/pytest-aiohttp/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/pytest-aiohttp/default.nix b/pkgs/development/python-modules/pytest-aiohttp/default.nix index c38ff23b6543..5ef7d3de55ae 100644 --- a/pkgs/development/python-modules/pytest-aiohttp/default.nix +++ b/pkgs/development/python-modules/pytest-aiohttp/default.nix @@ -4,7 +4,6 @@ fetchFromGitHub, setuptools, setuptools-scm, - wheel, aiohttp, pytest, pytest-asyncio, @@ -13,9 +12,8 @@ buildPythonPackage rec { pname = "pytest-aiohttp"; - version = "1.0.5"; - - format = "pyproject"; + version = "1.1.0"; + pyproject = true; __darwinAllowLocalNetworking = true; @@ -23,18 +21,17 @@ buildPythonPackage rec { owner = "aio-libs"; repo = "pytest-aiohttp"; tag = "v${version}"; - hash = "sha256-UACf0frMTOAgSsXQ0oqROHKR1zn4OfLPhd9MwBK002Y="; + hash = "sha256-5xUY3SVaoZzCZE/qfAP4R49HbtBMYj5jMN5viLEzEkM="; }; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm - wheel ]; buildInputs = [ pytest ]; - propagatedBuildInputs = [ + dependencies = [ aiohttp pytest-asyncio ];