python3Packages.airly: modernize

This commit is contained in:
Harinn
2026-07-10 23:38:04 +07:00
parent 3efe86da36
commit e2a10bf5bf
@@ -10,15 +10,17 @@
pythonOlder,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "airly";
version = "1.1.0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "ak-ambi";
repo = "python-airly";
rev = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-weliT/FYnRX+pzVAyRWFly7lfj2z7P+hpq5SIhyIgmI=";
};
@@ -52,4 +54,4 @@ buildPythonPackage rec {
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
})