nixpkgs/pkgs/development/interpreters/hy/default.nix

29 lines
629 B
Nix
Raw Normal View History

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