c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
23 lines
517 B
Nix
23 lines
517 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";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lilyinstarlight ];
|
|
};
|
|
}
|