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

28 lines
627 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "hy-${version}";
2018-10-30 00:07:07 +00:00
version = "0.15.0";
src = fetchurl {
url = "mirror://pypi/h/hy/${name}.tar.gz";
2018-10-30 00:07:07 +00:00
sha256 = "01vzaib1imr00j5d7f7xk44v800h06s3yv9inhlqm6f3b25ywpl1";
};
2018-10-30 00:07:07 +00:00
propagatedBuildInputs = with pythonPackages; [
appdirs
astor
clint
funcparserlib
rply
];
2018-02-24 21:37:58 +00:00
meta = {
description = "A LISP dialect embedded in Python";
homepage = http://hylang.org/;
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.nixy ];
platforms = stdenv.lib.platforms.all;
};
}