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
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
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/;
};
}

View file

@ -11432,6 +11432,8 @@ in {
flask_testing = callPackage ../development/python-modules/flask-testing.nix { };
flask_wtf = callPackage ../development/python-modules/flask-wtf.nix { };
wtforms = buildPythonPackage rec {
version = "2.1";
name = "wtforms-${version}";