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 ];