472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
72 lines
1.6 KiB
Nix
72 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
astor,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
funcparserlib,
|
|
hy,
|
|
pytestCheckHook,
|
|
python,
|
|
pythonOlder,
|
|
setuptools,
|
|
testers,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hy";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hylang";
|
|
repo = "hy";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-o6txdC8TOdaILAJP9LDAhJ587p+mw0bUEGLneQQYW9c=";
|
|
};
|
|
|
|
# https://github.com/hylang/hy/blob/1.0a4/get_version.py#L9-L10
|
|
HY_VERSION = version;
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ funcparserlib ] ++ lib.optionals (pythonOlder "3.9") [ astor ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
preCheck = ''
|
|
# For test_bin_hy
|
|
export PATH="$out/bin:$PATH"
|
|
'';
|
|
|
|
pythonImportsCheck = [ "hy" ];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = hy;
|
|
command = "hy -v";
|
|
};
|
|
# For backwards compatibility with removed pkgs/development/interpreters/hy
|
|
# Example usage:
|
|
# hy.withPackages (ps: with ps; [ hyrule requests ])
|
|
withPackages =
|
|
python-packages:
|
|
(python.withPackages (ps: (python-packages ps) ++ [ ps.hy ])).overrideAttrs (old: {
|
|
name = "${hy.name}-env";
|
|
meta = lib.mergeAttrs (builtins.removeAttrs hy.meta [ "license" ]) { mainProgram = "hy"; };
|
|
});
|
|
};
|
|
|
|
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
|
|
nixy
|
|
thiagokokada
|
|
];
|
|
};
|
|
}
|