mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #148664 from nkalupahana/master
python3Packages.empy: init at 3.3.4
This commit is contained in:
commit
fde30f1be0
3 changed files with 25 additions and 0 deletions
|
@ -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
pkgs/development/python-modules/empy/default.nix
Normal file
17
pkgs/development/python-modules/empy/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue