504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
18 lines
508 B
Nix
18 lines
508 B
Nix
{ lib, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "empy";
|
|
version = "4.0.1";
|
|
format = "setuptools";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-YjI3uYzWQ75eILrWJ1zJM//nz3ZFI5Lx0ybXZywqvWQ=";
|
|
};
|
|
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;
|
|
};
|
|
}
|