summary refs log tree commit diff
path: root/pkgs/development/python-modules/yattag/default.nix
blob: 8f97a374df6205b8c9ce6496e6a337871ba20984 (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.12.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1g0zhf09vs8cq0l5lx10dnqpimvg5mzh9k0z12n6nnfsw11cila7";
  };

  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 = https://www.yattag.org/;
  };
}