python3Packages.hy: 1.0.0 -> 1.1.0

R. Ryantm c365f283 2cd2decd

Changed files
+4 -6
pkgs
development
python-modules
+4 -6
pkgs/development/python-modules/hy/default.nix
···
buildPythonPackage rec {
pname = "hy";
-
version = "1.0.0";
pyproject = true;
-
-
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "hylang";
repo = "hy";
tag = version;
-
hash = "sha256-o6txdC8TOdaILAJP9LDAhJ587p+mw0bUEGLneQQYW9c=";
};
# https://github.com/hylang/hy/blob/1.0a4/get_version.py#L9-L10
···
build-system = [ setuptools ];
-
dependencies = [ funcparserlib ] ++ lib.optionals (pythonOlder "3.9") [ astor ];
nativeCheckInputs = [ pytestCheckHook ];
···
meta = with lib; {
description = "LISP dialect embedded in Python";
homepage = "https://hylang.org/";
-
changelog = "https://github.com/hylang/hy/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [
mazurel
···
buildPythonPackage rec {
pname = "hy";
+
version = "1.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "hylang";
repo = "hy";
tag = version;
+
hash = "sha256-zaTe9sRmW+lzpbNVrnj5ccp1xIbN10FD1Jst/hM78Lw=";
};
# https://github.com/hylang/hy/blob/1.0a4/get_version.py#L9-L10
···
build-system = [ setuptools ];
+
dependencies = [ funcparserlib ];
nativeCheckInputs = [ pytestCheckHook ];
···
meta = with lib; {
description = "LISP dialect embedded in Python";
homepage = "https://hylang.org/";
+
changelog = "https://github.com/hylang/hy/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [
mazurel