Unverified Commit 10c5cfc5 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.hyrule: 0.8.0 -> 1.0.0 (#392322)

parents 9dae7361 31c82f5b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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; [ ];
  };