summary refs log tree commit diff
path: root/pkgs/development/interpreters/hy
diff options
context:
space:
mode:
authorAndrew R. M <andrewmiller237@gmail.com>2017-04-07 23:15:16 -0400
committerAndrew R. M <andrewmiller237@gmail.com>2017-04-07 23:15:16 -0400
commit106214a7c98bd382b313551f315a2f12d329c056 (patch)
tree4a8f9581ad6dbdeb6f24911633daa15b024520ed /pkgs/development/interpreters/hy
parenta5ee494046b4259a4a2dfea95776faa898d1bd26 (diff)
downloadnixpkgs-106214a7c98bd382b313551f315a2f12d329c056.tar
nixpkgs-106214a7c98bd382b313551f315a2f12d329c056.tar.gz
nixpkgs-106214a7c98bd382b313551f315a2f12d329c056.tar.bz2
nixpkgs-106214a7c98bd382b313551f315a2f12d329c056.tar.lz
nixpkgs-106214a7c98bd382b313551f315a2f12d329c056.tar.xz
nixpkgs-106214a7c98bd382b313551f315a2f12d329c056.tar.zst
nixpkgs-106214a7c98bd382b313551f315a2f12d329c056.zip
hy: 0.11.1 -> 0.12.1
Fixed build inputs up a little while bumping version
Diffstat (limited to 'pkgs/development/interpreters/hy')
-rw-r--r--pkgs/development/interpreters/hy/default.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/interpreters/hy/default.nix b/pkgs/development/interpreters/hy/default.nix
index e1ce01b5906..3cafd956277 100644
--- a/pkgs/development/interpreters/hy/default.nix
+++ b/pkgs/development/interpreters/hy/default.nix
@@ -2,15 +2,14 @@
 
 pythonPackages.buildPythonApplication rec {
   name = "hy-${version}";
-  version = "0.11.1";
+  version = "0.12.1";
 
   src = fetchurl {
     url = "mirror://pypi/h/hy/${name}.tar.gz";
-    sha256 = "1msqv747iz12r73mz4qvsmlwkddwjvrahlrk7ysrcz07h7dsscxs";
+    sha256 = "1fjip998k336r26i1gpri18syvfjg7z46wng1n58dmc238wm53sx";
   };
 
-  buildInputs = [ pythonPackages.appdirs ];
-  propagatedBuildInputs = [ pythonPackages.clint pythonPackages.astor pythonPackages.rply ];
+  propagatedBuildInputs = with pythonPackages; [ appdirs clint astor rply ];
 
   meta = {
     description = "A LISP dialect embedded in Python";