587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
24 lines
554 B
Nix
24 lines
554 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wheezy.template";
|
|
version = "3.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-4RAHysczaNzhKZjjS2bEdgFrtGFHH/weTVboQALslg8=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|