summary refs log tree commit diff
path: root/pkgs/development/interpreters/hy/default.nix
blob: 5816b3a175c6eb29143b3651b17dee9c75f59ddd (plain) (blame)
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
{ stdenv, fetchurl, python2Packages }:

python2Packages.buildPythonApplication rec {
  pname = "hy";
  version = "0.17.0";

  src = python2Packages.fetchPypi {
    inherit pname version;
    sha256 = "1gdbqsirsdxj320wnp7my5awzs1kfs6m4fqmkzbd1zd47qzj0zfi";
  };

  propagatedBuildInputs = with python2Packages; [
    appdirs
    astor
    clint
    fastentrypoints
    funcparserlib
    rply
  ];

  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;
  };
}