python312Packages.hyrule: 0.8.0 -> 1.0.0

This commit is contained in:
R. Ryantm 2025-03-23 09:57:31 +00:00
parent f9ec383a10
commit 31c82f5b9a

View File

@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "hyrule";
version = "0.8.0";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "hylang";
repo = "hyrule";
tag = version;
hash = "sha256-FJ7iu+ohbe4nhADka2OC+JHAmwZkkJgFVLyHD0Fms1E=";
hash = "sha256-HSs5YUbhdaOgpBaxXe9LibJN4G3UJvEvEdnYt6ORQBo=";
};
build-system = [ setuptools ];
@ -33,7 +33,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Utility library for the Hy programming language";
homepage = "https://github.com/hylang/hyrule";
changelog = "https://github.com/hylang/hyrule/releases/tag/${version}";
changelog = "https://github.com/hylang/hyrule/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};