python3Packages.empy: init at 3.3.4

This commit is contained in:
nkalupahana 2021-12-05 00:58:01 -06:00
parent 5a1f29a657
commit 5bd4dadb17
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ 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;
};
}

View file

@ -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 { };