2019-11-13 14:48:25 +00:00
|
|
|
{ stdenv, fetchurl, python2Packages }:
|
2017-01-18 14:32:59 +00:00
|
|
|
|
2019-11-13 14:48:25 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2019-07-04 10:09:28 +00:00
|
|
|
pname = "hy";
|
|
|
|
version = "0.17.0";
|
2017-01-18 14:32:59 +00:00
|
|
|
|
2019-11-13 14:48:25 +00:00
|
|
|
src = python2Packages.fetchPypi {
|
2019-07-04 10:09:28 +00:00
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1gdbqsirsdxj320wnp7my5awzs1kfs6m4fqmkzbd1zd47qzj0zfi";
|
2017-01-18 14:32:59 +00:00
|
|
|
};
|
|
|
|
|
2019-11-13 14:48:25 +00:00
|
|
|
propagatedBuildInputs = with python2Packages; [
|
2018-10-30 00:07:07 +00:00
|
|
|
appdirs
|
|
|
|
astor
|
|
|
|
clint
|
2019-05-01 17:18:50 +00:00
|
|
|
fastentrypoints
|
2018-10-30 00:07:07 +00:00
|
|
|
funcparserlib
|
|
|
|
rply
|
|
|
|
];
|
2018-02-24 21:37:58 +00:00
|
|
|
|
2019-07-04 10:09:28 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-01-18 14:32:59 +00:00
|
|
|
description = "A LISP dialect embedded in Python";
|
2019-07-04 10:09:28 +00:00
|
|
|
homepage = "http://hylang.org/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ nixy ];
|
|
|
|
platforms = platforms.all;
|
2017-01-18 14:32:59 +00:00
|
|
|
};
|
|
|
|
}
|