Merge pull request #303542 from r-ryantm/auto-update/python312Packages.aiortm

python312Packages.aiortm: 0.8.10 -> 0.8.11
This commit is contained in:
Fabian Affolter 2024-04-12 12:22:02 +02:00 committed by GitHub
commit 9ca04b778d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 24 deletions

View File

@ -1,21 +1,22 @@
{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, ciso8601
, click
, fetchFromGitHub
, mashumaro
, poetry-core
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, yarl
{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
ciso8601,
click,
fetchFromGitHub,
mashumaro,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
yarl,
}:
buildPythonPackage rec {
pname = "aiortm";
version = "0.8.10";
version = "0.8.11";
pyproject = true;
disabled = pythonOlder "3.9";
@ -24,19 +25,17 @@ buildPythonPackage rec {
owner = "MartinHjelmare";
repo = "aiortm";
rev = "refs/tags/v${version}";
hash = "sha256-WkVuuvWWdj2McdXl+XwYukUcloehelFIi6QL5LSkfLk=";
hash = "sha256-VvpdeupBW8wZyNnAx9cvp0Li5z3D/AnqipTEGTsd2IE=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-warn " --cov=aiortm --cov-report=term-missing:skip-covered" ""
--replace-fail " --cov=aiortm --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [
poetry-core
];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
aiohttp
ciso8601
click
@ -50,16 +49,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"aiortm"
];
pythonImportsCheck = [ "aiortm" ];
meta = with lib; {
description = "Library for the Remember the Milk API";
mainProgram = "aiortm";
homepage = "https://github.com/MartinHjelmare/aiortm";
changelog = "https://github.com/MartinHjelmare/aiortm/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
mainProgram = "aiortm";
};
}