python3Packages.wheezy-template: init at 3.1.0

This commit is contained in:
Lily Foster 2023-03-23 16:20:28 -04:00
parent 1a828c711a
commit 935974daa0
No known key found for this signature in database
GPG Key ID: 49340081E484C893
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ 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 ];
};
}

View File

@ -12636,6 +12636,8 @@ self: super: with self; {
wheel-inspect = callPackage ../development/python-modules/wheel-inspect { };
wheezy-template = callPackage ../development/python-modules/wheezy-template { };
whichcraft = callPackage ../development/python-modules/whichcraft { };
whirlpool-sixth-sense = callPackage ../development/python-modules/whirlpool-sixth-sense { };