pythonPackages.flask_wtf: init at 0.14.2

This commit is contained in:
Jörg Thalheim
2017-01-14 00:17:33 +01:00
parent 5da2caab63
commit 3b44782026
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl, buildPythonPackage, flask, wtforms, nose }:
buildPythonPackage rec {
name = "Flask-WTF-0.14.2";
src = fetchurl {
url = "mirror://pypi/F/Flask-WTF/${name}.tar.gz";
sha256 = "0dncc5as2k61b28k8kal5yh3prmv7zya1jz7kvci7ximzmfda52x";
};
propagatedBuildInputs = [ flask wtforms nose ];
doCheck = false; # requires external service
meta = with stdenv.lib; {
description = "Simple integration of Flask and WTForms.";
license = licenses.bsd;
maintainers = [ maintainers.mic92 ];
homepage = https://github.com/lepture/flask-wtf/;
};
}