python3Packages.pyais: 2.14.0 -> 2.15.0 (#480228)

This commit is contained in:
Fabian Affolter
2026-01-15 13:42:45 +00:00
committed by GitHub
@@ -9,16 +9,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pyais";
version = "2.14.0";
version = "2.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "M0r13n";
repo = "pyais";
tag = "v${version}";
hash = "sha256-3KZCfJkXofxMcqAOa6IInCbQIGZSJ/1+L9cM/GCCGog=";
tag = "v${finalAttrs.version}";
hash = "sha256-EMMyH6bjoS0PFop1C0TZinfwAA9E8xA7jrJ8q1jm+CY=";
};
__darwinAllowLocalNetworking = true;
@@ -47,8 +47,8 @@ buildPythonPackage rec {
meta = {
description = "Module for decoding and encoding AIS messages (AIVDM/AIVDO)";
homepage = "https://github.com/M0r13n/pyais";
changelog = "https://github.com/M0r13n/pyais/blob/${src.tag}/CHANGELOG.txt";
changelog = "https://github.com/M0r13n/pyais/blob/${finalAttrs.src.tag}/CHANGELOG.txt";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})