python3Packages.tinyio: 0.3.0 -> 0.4.0

This commit is contained in:
R. Ryantm
2026-03-21 23:04:53 +00:00
committed by Gaetan Lepage
parent 5e40dc287b
commit bd63dd5d7e
@@ -12,16 +12,16 @@
trio,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "tinyio";
version = "0.3.0";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "patrick-kidger";
repo = "tinyio";
tag = "v${version}";
hash = "sha256-zAmsUe1fQeTxv0U++lU6abaP8YQMLlF3rkI7eyhTK0I=";
tag = "v${finalAttrs.version}";
hash = "sha256-a1EbgFcyWz0aihX16ZQbcAwKKneUe+b8qV0cHyMchVI=";
};
build-system = [
@@ -44,8 +44,8 @@ buildPythonPackage rec {
meta = {
description = "Dead-simple event loop for Python";
homepage = "https://github.com/patrick-kidger/tinyio";
changelog = "https://github.com/patrick-kidger/tinyio/releases/tag/${src.tag}";
changelog = "https://github.com/patrick-kidger/tinyio/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})