Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
529 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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.bsd3;
};
}