bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
25 lines
557 B
Nix
25 lines
557 B
Nix
{
|
|
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 = "Lightweight template library";
|
|
mainProgram = "wheezy.template";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lilyinstarlight ];
|
|
};
|
|
}
|