Fabian Affolter 2023-09-27 19:01:01 +02:00
parent c22ca8e820
commit a0885d882e

View file

@ -1,30 +1,49 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pythonOlder
, pytestCheckHook
, pytest-cov
, pytest-asyncio , pytest-asyncio
, pytestCheckHook
, pythonOlder
, typing-extensions
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiostream"; pname = "aiostream";
version = "0.4.5"; version = "0.5.0";
disabled = pythonOlder "3.6"; format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vxgmichel"; owner = "vxgmichel";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; 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; { meta = with lib; {
description = "Generator-based operators for asynchronous iteration"; description = "Generator-based operators for asynchronous iteration";
homepage = "https://aiostream.readthedocs.io"; homepage = "https://aiostream.readthedocs.io";
changelog = "https://github.com/vxgmichel/aiostream/releases/tag/v${version}";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = [ maintainers.rmcgibbo ]; maintainers = with maintainers; [ rmcgibbo ];
}; };
} }