nile: 1.1.2 -> 1.2.0, add theobori as maintainer (#531660)

This commit is contained in:
Sandro
2026-06-16 20:25:28 +00:00
committed by GitHub
+3 -3
View File
@@ -7,14 +7,14 @@
python3Packages.buildPythonApplication (finalAttrs: {
pname = "nile";
version = "1.1.2";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "imLinguin";
repo = "nile";
tag = "v${finalAttrs.version}";
hash = "sha256-/C4b8wPKWHGgiheuAN7AvU+KcD5aj5i6KzgFSdTIkNI=";
hash = "sha256-tzf3sqD7P32AXzZu/WDauOSsEe/xhCh6x4KGQ1YnJqw=";
};
build-system = with python3Packages; [ setuptools ];
@@ -50,6 +50,6 @@ python3Packages.buildPythonApplication (finalAttrs: {
changelog = "https://github.com/imLinguin/nile/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Only;
mainProgram = "nile";
maintainers = [ ];
maintainers = with lib.maintainers; [ theobori ];
};
})