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