Skip to content

Commit

Permalink
hy: Fix build inputs (#24747)
Browse files Browse the repository at this point in the history
* hy: Fix build inputs

Appdirs needs to be in `propogatedBuildInputs` for hy to run

* hy: fix typo in dependency list
  • Loading branch information
nixy authored and Mic92 committed Apr 8, 2017
1 parent a00c4ae commit ec7865b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkgs/development/interpreters/hy/default.nix
Expand Up @@ -9,8 +9,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "1msqv747iz12r73mz4qvsmlwkddwjvrahlrk7ysrcz07h7dsscxs";
};

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";
Expand Down

0 comments on commit ec7865b

Please sign in to comment.