vscode-extensions.github.copilot{*}: bump (#364729)
[NixPkgs.git] / pkgs / development / python-modules / wheezy-template / default.nix
blobfcdaf64d802ca7a9971196d2cff8e1ee127169d5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "wheezy.template";
9   version = "3.2.2";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-hknPXHGPPNjRAr0TYVosPaTntsjwQjOKZBCU+qFlIHw=";
14   };
16   pythonImportsCheck = [ "wheezy.template" ];
18   meta = with lib; {
19     homepage = "https://wheezytemplate.readthedocs.io/en/latest/";
20     description = "Lightweight template library";
21     mainProgram = "wheezy.template";
22     license = licenses.mit;
23     maintainers = [ ];
24   };