python310Packages.aiorun: 2021.10.1 -> 2022.11.1

Diff: https://github.com/cjrh/aiorun/compare/refs/tags/v2021.10.1...v2022.11.1

Changelog: https://github.com/cjrh/aiorun/blob/v2022.11.1/CHANGES
This commit is contained in:
Fabian Affolter 2023-01-09 16:09:32 +01:00
parent f605337abc
commit 319fd6bf3b

View file

@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "aiorun";
version = "2021.10.1";
version = "2022.11.1";
format = "flit";
disabled = pythonOlder "3.5";
@ -17,8 +17,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "cjrh";
repo = pname;
rev = "v${version}";
hash = "sha256-9e1vUWDBv3BYWuKR/rZUvaIxFFetzBQaygXKnl4PDd8=";
rev = "refs/tags/v${version}";
hash = "sha256-1qXt3HT/0sECOqPRwc0p+5+YZh1kyHSbkZHajcrjvZc=";
};
propagatedBuildInputs = [
@ -42,6 +42,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Boilerplate for asyncio applications";
homepage = "https://github.com/cjrh/aiorun";
changelog = "https://github.com/cjrh/aiorun/blob/v${version}/CHANGES";
license = licenses.asl20;
maintainers = with maintainers; [ costrouc ];
};