nixpkgs/pkgs/development/python-modules/wheezy-template/default.nix
2023-04-16 09:17:25 -04:00

24 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 ];
};
}