From a0885d882e65600db475585686b5547e798fde6d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 27 Sep 2023 19:01:01 +0200 Subject: [PATCH] python311Packages.aiostream: 0.4.5 -> 0.5.0 Diff: https://github.com/vxgmichel/aiostream/compare/refs/tags/v0.4.5...v0.5.0 Changelog: https://github.com/vxgmichel/aiostream/releases/tag/v0.5.0 --- .../python-modules/aiostream/default.nix | 35 ++++++++++++++----- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/aiostream/default.nix b/pkgs/development/python-modules/aiostream/default.nix index 5d6b5436db4..670bc3a3443 100644 --- a/pkgs/development/python-modules/aiostream/default.nix +++ b/pkgs/development/python-modules/aiostream/default.nix @@ -1,30 +1,49 @@ { lib , buildPythonPackage , fetchFromGitHub -, pythonOlder -, pytestCheckHook -, pytest-cov , pytest-asyncio +, pytestCheckHook +, pythonOlder +, typing-extensions }: buildPythonPackage rec { pname = "aiostream"; - version = "0.4.5"; - disabled = pythonOlder "3.6"; + version = "0.5.0"; + format = "setuptools"; + + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "vxgmichel"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-WOtscg02Dq5YNSAfq4pIyH3oUP/5G+cjBwKB6c+SUVA="; + hash = "sha256-w5FVXksR3k9uKQ4fZIbR7KRf38bD9nj6wGrhue/7Nus="; }; - nativeCheckInputs = [ pytestCheckHook pytest-cov pytest-asyncio ]; + postPatch = '' + substituteInPlace setup.cfg \ + --replace " --cov aiostream --cov-report html --cov-report term" "" + ''; + + propagatedBuildInputs = [ + typing-extensions + ]; + + nativeCheckInputs = [ + pytest-asyncio + pytestCheckHook + ]; + + pythonImportsCheck = [ + "aiostream" + ]; meta = with lib; { description = "Generator-based operators for asynchronous iteration"; homepage = "https://aiostream.readthedocs.io"; + changelog = "https://github.com/vxgmichel/aiostream/releases/tag/v${version}"; license = licenses.gpl3Only; - maintainers = [ maintainers.rmcgibbo ]; + maintainers = with maintainers; [ rmcgibbo ]; }; }