f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
25 lines
541 B
Nix
25 lines
541 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; [ ];
|
|
};
|
|
}
|