python2Packages.flask: remove

This commit is contained in:
Robert Schütz 2022-06-06 18:11:20 +00:00
parent ed4ec1862b
commit b566290cdb
2 changed files with 0 additions and 30 deletions

View File

@ -1,28 +0,0 @@
{ lib, buildPythonPackage, fetchPypi
, itsdangerous, click, werkzeug, jinja2, pytest }:
buildPythonPackage rec {
version = "1.1.2";
pname = "Flask";
src = fetchPypi {
inherit pname version;
sha256 = "4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ itsdangerous click werkzeug jinja2 ];
checkPhase = ''
py.test
'';
# Tests require extra dependencies
doCheck = false;
meta = with lib; {
homepage = "http://flask.pocoo.org/";
description = "A microframework based on Werkzeug, Jinja 2, and good intentions";
license = licenses.bsd3;
};
}

View File

@ -36,8 +36,6 @@ with self; with super; {
filelock = callPackage ../development/python2-modules/filelock { };
flask = callPackage ../development/python2-modules/flask { };
freezegun = callPackage ../development/python2-modules/freezegun { };
futures = callPackage ../development/python2-modules/futures { };