pythonPackages.flask_testing: init at 0.6.1

This commit is contained in:
Jörg Thalheim 2017-01-14 00:13:45 +01:00
parent b9e0da457a
commit 5da2caab63
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, fetchurl, buildPythonPackage, pythonOlder
, flask, blinker, twill }:
with stdenv.lib;
buildPythonPackage rec {
name = "Flask-Testing-0.6.1";
src = fetchurl {
url = "mirror://pypi/F/Flask-Testing/${name}.tar.gz";
sha256 = "1ckmy7kz2qkggdlm9y5wx6gvd2x7qv921dyb059ywfh15hrkkxdb";
};
buildInputs = optionals (pythonOlder "3.0") [ twill ];
propagatedBuildInputs = [ flask blinker ];
meta = {
description = "Flask unittest integration.";
homepage = https://pythonhosted.org/Flask-Testing/;
license = licenses.bsd3;
maintainers = [ maintainers.mic92 ];
};
}

View File

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