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

  src = fetchPypi {
    inherit pname version;
    sha256 = "41c1182f81e69bc53d8763c5bb9d27f54ae05ce581ee4e41c7931cc2f2479262";
  };

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