hy: init at 0.11.1

This is the hy language, a dialect of lisp designed to be closely
intergrated with python.
This commit is contained in:
Andrew R. M
2017-01-18 09:32:59 -05:00
parent e17b483669
commit b8acb928cc
4 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "hy-${version}";
version = "0.11.1";
src = fetchurl {
url = "mirror://pypi/h/hy/${name}.tar.gz";
sha256 = "1msqv747iz12r73mz4qvsmlwkddwjvrahlrk7ysrcz07h7dsscxs";
};
buildInputs = [ pythonPackages.appdirs ];
propagatedBuildInputs = [ pythonPackages.clint pythonPackages.astor pythonPackages.rply ];
meta = {
description = "A LISP dialect embedded in Python";
homepage = http://hylang.org/;
license = stdenv.lib.licenses.mit;
maintainers = stdenv.lib.maintainers.nixy;
platforms = stdenv.lib.platforms.all;
};
}