pythonPackages.yattag: init at 1.10.1 (#51056)
* pythonPackages.yattag: init at 1.10.1 * pythonPackages.yattag: add license
This commit is contained in:
committed by
Maximilian Bosch
parent
bff473b034
commit
5095c08374
17
pkgs/development/python-modules/yattag/default.nix
Normal file
17
pkgs/development/python-modules/yattag/default.nix
Normal 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/;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user