about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/wheezy-template/default.nix
blob: 0baba9c564e505094e12ca841171cad39624ec31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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";
    mainProgram = "wheezy.template";
    license = licenses.mit;
    maintainers = with maintainers; [ lilyinstarlight ];
  };
}