1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "wheezy.template";
9 version = "3.2.2";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-hknPXHGPPNjRAr0TYVosPaTntsjwQjOKZBCU+qFlIHw=";
15 };
16
17 pythonImportsCheck = [ "wheezy.template" ];
18
19 meta = with lib; {
20 homepage = "https://wheezytemplate.readthedocs.io/en/latest/";
21 description = "Lightweight template library";
22 mainProgram = "wheezy.template";
23 license = licenses.mit;
24 maintainers = [ ];
25 };
26}