1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5}:
6
7buildPythonPackage rec {
8 pname = "empy";
9 version = "4.2";
10 format = "setuptools";
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-hvFeHal0Pnmi6bLLrPGhPQt/sYNbYlTrJTyXi3Iof08=";
14 };
15 pythonImportsCheck = [ "em" ];
16 meta = with lib; {
17 homepage = "http://www.alcyone.com/software/empy/";
18 description = "Templating system for Python";
19 mainProgram = "em.py";
20 maintainers = with maintainers; [ nkalupahana ];
21 license = licenses.bsd3;
22 };
23}