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