summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorAndrew R. M <andrewmiller237@gmail.com>2017-01-18 09:32:59 -0500
committerAndrew R. M <andrewmiller237@gmail.com>2017-01-18 09:32:59 -0500
commitb8acb928ccca8d1fdf6de996a8dd41ced0d7bad6 (patch)
treeaab85a394cb6d949851b9b51c2aa6e02bc66e5d0 /pkgs/development/interpreters
parente17b483669535d60d802cc979cad5e463e8ea114 (diff)
downloadnixlib-b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6.tar
nixlib-b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6.tar.gz
nixlib-b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6.tar.bz2
nixlib-b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6.tar.lz
nixlib-b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6.tar.xz
nixlib-b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6.tar.zst
nixlib-b8acb928ccca8d1fdf6de996a8dd41ced0d7bad6.zip
hy: init at 0.11.1
This is the hy language, a dialect of lisp designed to be closely
intergrated with python.
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/hy/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/hy/default.nix b/pkgs/development/interpreters/hy/default.nix
new file mode 100644
index 000000000000..ee6ac6d39e53
--- /dev/null
+++ b/pkgs/development/interpreters/hy/default.nix
@@ -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;
+  };
+}