pythonPackages.flask_script: init at 2.0.5

This commit is contained in:
Nikolay Amiantov 2016-02-14 14:48:30 +03:00
parent 95ffcafff3
commit d7b1ffe9c7

View file

@ -8770,6 +8770,27 @@ in modules // {
};
};
flask_script = buildPythonPackage rec {
name = "Flask-Script-${version}";
version = "2.0.5";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/F/Flask-Script/${name}.tar.gz";
sha256 = "0zqh2yq8zk7m9b4xw1ryqmrljkdigfb3hk5155a3b5hkfnn6xxyf";
};
nativeBuildInputs = with self; [ pytest ];
propagatedBuildInputs = with self; [ flask ];
meta = {
homepage = http://github.com/smurfix/flask-script;
description = "Scripting support for Flask";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
};
};
wtforms = buildPythonPackage rec {
version = "2.0.2";
name = "wtforms-${version}";