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

  src = fetchPypi {
    inherit pname version;
    sha256 = "94210945c868f696a31812a510c01724d61c9a4d279eb4adf340c0d2a4c0bfd7";
  };

  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/;
  };
}