aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/yattag/default.nix
blob: 211a4b60c8131d587344aae71ca9dc54a473cd94 (plain)
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.14.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5731a31cb7452c0c6930dd1a284e0170b39eee959851a2aceb8d6af4134a5fa8";
  };

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