python3Packages.hy: 1.0a3 -> 1.0a4

main
Thiago Kenji Okada 2 years ago
parent 19e187fbab
commit e0b9154e58
  1. 11
      pkgs/development/python-modules/hy/default.nix

@ -11,21 +11,22 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "hy"; pname = "hy";
version = "1.0a3"; version = "1.0a4";
format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hylang"; owner = "hylang";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1dqw24rvsps2nab1pbjjm1c81vrs34r4kkk691h3xdyxnv9hb84b"; sha256 = "sha256-MBzp3jqBg/kH233wcgYYHc+Yg9GuOaBsXIfjFDihD1E=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
colorama colorama
funcparserlib funcparserlib
rply rply # TODO: remove on the next release
] ++ lib.optionals (pythonOlder "3.9") [ ] ++ lib.optionals (pythonOlder "3.9") [
astor astor
]; ];
@ -47,6 +48,6 @@ buildPythonPackage rec {
description = "Python to/from Lisp layer"; description = "Python to/from Lisp layer";
homepage = "https://github.com/hylang/hy"; homepage = "https://github.com/hylang/hy";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab thiagokokada ];
}; };
} }

Loading…
Cancel
Save