aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/interpreters/hy/default.nix
blob: a3aca532b0f3e6735caa6f49ab8b358f2b5e60de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname = "hy";
  version = "0.18.0";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "04dfwm336gw61fmgwikvh0cnxk682p19b4w555wl5d7mlym4rwj2";
  };

  checkInputs = with python3Packages; [ flake8 pytest ];

  propagatedBuildInputs = with python3Packages; [
    appdirs
    astor
    clint
    colorama
    fastentrypoints
    funcparserlib
    rply
    pygments
  ];

  # Hy does not include tests in the source distribution from PyPI, so only test executable.
  checkPhase = ''
    $out/bin/hy --help > /dev/null
  '';

  meta = with stdenv.lib; {
    description = "A LISP dialect embedded in Python";
    homepage = "http://hylang.org/";
    license = licenses.mit;
    maintainers = with maintainers; [ nixy ];
    platforms = platforms.all;
  };
}