about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Miller <andrewmiller237@gmail.com>2018-10-29 20:07:07 -0400
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-30 01:07:07 +0100
commitd837fe68aebbc46339a9821d1dde9b35c6899073 (patch)
tree68c7761ef0b1a811f9b24db148469089c1da2c08
parente96d14d1776ef61236fc2efed4a0231bcc9424a0 (diff)
downloadnixlib-d837fe68aebbc46339a9821d1dde9b35c6899073.tar
nixlib-d837fe68aebbc46339a9821d1dde9b35c6899073.tar.gz
nixlib-d837fe68aebbc46339a9821d1dde9b35c6899073.tar.bz2
nixlib-d837fe68aebbc46339a9821d1dde9b35c6899073.tar.lz
nixlib-d837fe68aebbc46339a9821d1dde9b35c6899073.tar.xz
nixlib-d837fe68aebbc46339a9821d1dde9b35c6899073.tar.zst
nixlib-d837fe68aebbc46339a9821d1dde9b35c6899073.zip
hy: 0.14.0 -> 0.15.0 (#49428)
-rw-r--r--pkgs/development/interpreters/hy/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/interpreters/hy/default.nix b/pkgs/development/interpreters/hy/default.nix
index 3f08ca8f7c22..02ce07bdf471 100644
--- a/pkgs/development/interpreters/hy/default.nix
+++ b/pkgs/development/interpreters/hy/default.nix
@@ -2,20 +2,20 @@
 
 pythonPackages.buildPythonApplication rec {
   name = "hy-${version}";
-  version = "0.14.0";
+  version = "0.15.0";
 
   src = fetchurl {
     url = "mirror://pypi/h/hy/${name}.tar.gz";
-    sha256 = "0cbdh1q0zm00p4h7i44kir4qhw0p6sid78xf6llrx2p21llsnv98";
+    sha256 = "01vzaib1imr00j5d7f7xk44v800h06s3yv9inhlqm6f3b25ywpl1";
   };
 
-  propagatedBuildInputs = with pythonPackages; [ appdirs clint astor rply ];
-
-  # The build generates a .json parser file in the home directory under .cache.
-  # This is needed to get it to not try and open files in /homeless-shelter
-  preConfigure = ''
-    export HOME=$TMP
-  '';
+  propagatedBuildInputs = with pythonPackages; [
+    appdirs
+    astor
+    clint
+    funcparserlib
+    rply
+  ];
 
   meta = {
     description = "A LISP dialect embedded in Python";