nixpkgs/pkgs/development/python-modules/yattag/default.nix
ryan4729 5095c08374 pythonPackages.yattag: init at 1.10.1 (#51056)
* pythonPackages.yattag: init at 1.10.1

* pythonPackages.yattag: add license
2018-11-26 03:09:56 +01:00

18 lines
511 B
Nix

{ lib, stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "yattag";
version = "1.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "0r3pwfygvpkgc0hzxc6z8dl56g6brlh52r0x8kcjhywr1biahqb2";
};
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/;
};
}