hy: 0.13.1 -> 0.14.0
This commit is contained in:
parent
63fa1fcb04
commit
9d37c059d3
@ -2,15 +2,21 @@
|
|||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "hy-${version}";
|
name = "hy-${version}";
|
||||||
version = "0.13.1";
|
version = "0.14.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://pypi/h/hy/${name}.tar.gz";
|
url = "mirror://pypi/h/hy/${name}.tar.gz";
|
||||||
sha256 = "1fjip998k336r26i1gpri18syvfjg7z46wng1n58dmc238wm53sx";
|
sha256 = "0cbdh1q0zm00p4h7i44kir4qhw0p6sid78xf6llrx2p21llsnv98";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [ appdirs clint astor rply ];
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A LISP dialect embedded in Python";
|
description = "A LISP dialect embedded in Python";
|
||||||
homepage = http://hylang.org/;
|
homepage = http://hylang.org/;
|
||||||
|
Loading…
Reference in New Issue
Block a user