Unverified Commit fde30f1b authored by Ben Siraphob's avatar Ben Siraphob Committed by GitHub
Browse files

Merge pull request #148664 from nkalupahana/master

python3Packages.empy: init at 3.3.4
parents 72000dce 0ff0d541
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -8501,6 +8501,12 @@
    githubId = 7588406;
    name = "Andrew R. M.";
  };
  nkalupahana = {
    email = "hello@nisa.la";
    github = "nkalupahana";
    githubId = 7347290;
    name = "Nisala Kalupahana";
  };
  nloomans = {
    email = "noah@nixos.noahloomans.com";
    github = "nloomans";
+17 −0
Original line number Diff line number Diff line
{ lib, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "empy";
  version = "3.3.4";
  src = fetchPypi {
    inherit pname version;
    sha256 = "c6xJeFtgFHnfTqGKfHm8EwSop8NMArlHLPEgauiPAbM=";
  };
  pythonImportsCheck = [ "em" ];
  meta = with lib; {
    homepage = "http://www.alcyone.com/software/empy/";
    description = "A templating system for Python.";
    maintainers = with maintainers; [ nkalupahana ];
    license = licenses.lgpl21Only;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2470,6 +2470,8 @@ in {

  emoji = callPackage ../development/python-modules/emoji { };

  empy = callPackage ../development/python-modules/empy { };

  emulated-roku = callPackage ../development/python-modules/emulated-roku { };

  enaml = callPackage ../development/python-modules/enaml { };