Merge pull request #208728 from fabaff/aiortm-bump

python310Packages.aiortm: 0.3.1 -> 0.4.0
This commit is contained in:
Fabian Affolter
2023-01-02 17:17:51 +01:00
committed by GitHub
@@ -1,8 +1,10 @@
{ lib
, aiohttp
, aioresponses
, buildPythonPackage
, click
, fetchFromGitHub
, pydantic
, poetry-core
, pytestCheckHook
, pythonOlder
@@ -11,7 +13,7 @@
buildPythonPackage rec {
pname = "aiortm";
version = "0.3.1";
version = "0.4.0";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -20,7 +22,7 @@ buildPythonPackage rec {
owner = "MartinHjelmare";
repo = pname;
rev = "v${version}";
hash = "sha256-DTFynPFf0NUBieXDiMKhCNwBqx3s/xzggNmnz/IKjbU=";
hash = "sha256-cdCKcwpQ+u3CkMiPfMf6DnH2SYc7ab8q5W72aEEnNx4=";
};
nativeBuildInputs = [
@@ -30,10 +32,12 @@ buildPythonPackage rec {
propagatedBuildInputs = [
aiohttp
click
pydantic
yarl
];
checkInputs = [
aioresponses
pytestCheckHook
];
@@ -49,6 +53,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for the Remember the Milk API";
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 ];
};