python3Pakcages.aiocsv: modernize

This commit is contained in:
Fabian Affolter
2026-05-23 01:21:58 +02:00
parent c88cfc3862
commit 09be9bde87
@@ -10,7 +10,7 @@
typing-extensions,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiocsv";
version = "1.4.1";
pyproject = true;
@@ -18,7 +18,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "MKuranowski";
repo = "aiocsv";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-WENNtQKvpUuoYai6r8nTRamwCOloVA42YoAA3JGK9B8=";
};
@@ -49,7 +49,8 @@ buildPythonPackage rec {
meta = {
description = "Library for for asynchronous CSV reading/writing";
homepage = "https://github.com/MKuranowski/aiocsv";
license = with lib.licenses; [ mit ];
changelog = "https://github.com/MKuranowski/aiocsv/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})