Merge pull request #209886 from fabaff/aiorun-bump

python310Packages.aiorun: 2021.10.1 -> 2022.11.1
This commit is contained in:
Fabian Affolter
2023-01-09 22:11:26 +01:00
committed by GitHub
@@ -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 ];
};