pythonPackages.yattag: init at 1.10.1 (#51056)

* pythonPackages.yattag: init at 1.10.1

* pythonPackages.yattag: add license
This commit is contained in:
ryan4729 2018-11-25 18:09:56 -08:00 committed by Maximilian Bosch
parent bff473b034
commit 5095c08374
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ 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/;
};
}

View file

@ -4980,6 +4980,8 @@ in {
simpy = callPackage ../development/python-modules/simpy { };
yattag = callPackage ../development/python-modules/yattag { };
z3 = (toPythonModule (pkgs.z3.override {
inherit python;
})).python;