summary refs log tree commit diff
path: root/pkgs/development/python-modules/yattag/default.nix
blob: 89a9e1abdc46443f3090188036678d4bfa81bb6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "yattag";
  version = "1.11.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0grf7hskbxfxj60qmd44xiwmr9mzmi09inilvhykw28m0c84s8fp";
  };

  meta = with lib; {
    description = "Generate HTML or XML in a pythonic way. Pure python alternative to web template engines. Can fill HTML forms with default values and error messages.";
    license = [ licenses.lgpl21 ];
    homepage = http://www.yattag.org/;
  };
}