Merge pull request #148664 from nkalupahana/master

python3Packages.empy: init at 3.3.4
This commit is contained in:
Ben Siraphob 2021-12-05 01:57:18 -06:00 committed by GitHub
commit fde30f1be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 0 deletions

View File

@ -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";

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