Unverified Commit c365f283 authored by R. RyanTM's avatar R. RyanTM Committed by natsukium
Browse files

python3Packages.hy: 1.0.0 -> 1.1.0

parent 2cd2decd
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -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