Merge pull request #257683 from fabaff/aiostream-bump

python311Packages.aiostream: 0.4.5 -> 0.5.0

Changed files
+27 -8
pkgs
development
python-modules
aiostream
+27 -8
pkgs/development/python-modules/aiostream/default.nix
···
{ lib
, buildPythonPackage
, fetchFromGitHub
+
, pytest-asyncio
+
, pytestCheckHook
, pythonOlder
-
, pytestCheckHook
-
, pytest-cov
-
, pytest-asyncio
+
, 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 ];
};
}