python310Packages.aiortm: init at 0.3.1

This commit is contained in:
Fabian Affolter 2022-08-11 02:46:17 +02:00
parent d6417bd306
commit f1629f158a
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ lib
, aiohttp
, buildPythonPackage
, click
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, yarl
}:
buildPythonPackage rec {
pname = "aiortm";
version = "0.3.1";
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "MartinHjelmare";
repo = pname;
rev = "v${version}";
hash = "sha256-DTFynPFf0NUBieXDiMKhCNwBqx3s/xzggNmnz/IKjbU=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
click
yarl
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=aiortm --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [
"aiortm"
];
meta = with lib; {
description = "Library for the Remember the Milk API";
homepage = "https://github.com/MartinHjelmare/aiortm";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -401,6 +401,8 @@ in {
aiorpcx = callPackage ../development/python-modules/aiorpcx { };
aiortm = callPackage ../development/python-modules/aiortm { };
aiorun = callPackage ../development/python-modules/aiorun { };
aiosenseme = callPackage ../development/python-modules/aiosenseme { };