Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wheezy-template / default.nix
blob0baba9c564e505094e12ca841171cad39624ec31
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "wheezy.template";
8   version = "3.1.0";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-4RAHysczaNzhKZjjS2bEdgFrtGFHH/weTVboQALslg8=";
13   };
15   pythonImportsCheck = [ "wheezy.template" ];
17   meta = with lib; {
18     homepage = "https://wheezytemplate.readthedocs.io/en/latest/";
19     description = "A lightweight template library";
20     mainProgram = "wheezy.template";
21     license = licenses.mit;
22     maintainers = with maintainers; [ lilyinstarlight ];
23   };