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