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