python3Packages.hy: 1.0.0 -> 1.1.0 (#405430)

This commit is contained in:
OTABI Tomoya
2025-05-11 01:05:46 +09:00
committed by GitHub
@@ -14,16 +14,14 @@
buildPythonPackage rec {
pname = "hy";
version = "1.0.0";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "hylang";
repo = "hy";
tag = version;
hash = "sha256-o6txdC8TOdaILAJP9LDAhJ587p+mw0bUEGLneQQYW9c=";
hash = "sha256-zaTe9sRmW+lzpbNVrnj5ccp1xIbN10FD1Jst/hM78Lw=";
};
# https://github.com/hylang/hy/blob/1.0a4/get_version.py#L9-L10
@@ -31,7 +29,7 @@ buildPythonPackage rec {
build-system = [ setuptools ];
dependencies = [ funcparserlib ] ++ lib.optionals (pythonOlder "3.9") [ astor ];
dependencies = [ funcparserlib ];
nativeCheckInputs = [ pytestCheckHook ];
@@ -61,7 +59,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "LISP dialect embedded in Python";
homepage = "https://hylang.org/";
changelog = "https://github.com/hylang/hy/releases/tag/${version}";
changelog = "https://github.com/hylang/hy/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [
mazurel