nixpkgs/pkgs/development/python-modules/yattag/default.nix
Mario Rodas 7bd160ad48
Merge pull request #63405 from r-ryantm/auto-update/python3.7-yattag
python37Packages.yattag: 1.11.1 -> 1.11.2
2019-06-18 06:04:07 -05:00

18 lines
503 B
Nix

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