python312Packages.aioconsole: 0.7.1 -> 0.8.0 (#341343)

This commit is contained in:
Fabian Affolter
2024-09-12 22:03:05 +02:00
committed by GitHub
@@ -18,7 +18,7 @@
# wrapped to be able to find aioconsole and any other packages.
buildPythonPackage rec {
pname = "aioconsole";
version = "0.7.1";
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -27,21 +27,21 @@ buildPythonPackage rec {
owner = "vxgmichel";
repo = "aioconsole";
rev = "refs/tags/v${version}";
hash = "sha256-c8zeKebS04bZS9pMIKAauaLPvRrWaGoDKbnF906tFzQ=";
hash = "sha256-gexVeMlDRxZXcBi/iIYPip0DZIKvxCxKmTd+9jm0ud8=";
};
nativeBuildInputs = [ setuptools ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail " --cov aioconsole --strict-markers --count 2 -vv" ""
'';
build-system = [ setuptools ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.cfg \
--replace "--cov aioconsole --count 2" ""
'';
__darwinAllowLocalNetworking = true;
disabledTests = [
@@ -53,11 +53,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "aioconsole" ];
meta = with lib; {
changelog = "https://github.com/vxgmichel/aioconsole/releases/tag/v${version}";
description = "Asynchronous console and interfaces for asyncio";
mainProgram = "apython";
changelog = "https://github.com/vxgmichel/aioconsole/releases/tag/v${version}";
homepage = "https://github.com/vxgmichel/aioconsole";
license = licenses.gpl3Only;
maintainers = with maintainers; [ catern ];
mainProgram = "apython";
};
}