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