nixpkgs/pkgs/development/python-modules/flask/default.nix

29 lines
671 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2017-09-06 17:31:38 +02:00
, itsdangerous, click, werkzeug, jinja2, pytest }:
buildPythonPackage rec {
2019-05-30 08:49:49 +02:00
version = "1.0.3";
pname = "Flask";
src = fetchPypi {
inherit pname version;
2019-05-30 08:49:49 +02:00
sha256 = "ad7c6d841e64296b962296c2c2dabc6543752985727af86a975072dea984b6f3";
};
2017-09-06 17:31:38 +02:00
checkInputs = [ pytest ];
propagatedBuildInputs = [ itsdangerous click werkzeug jinja2 ];
2017-09-06 17:31:38 +02:00
checkPhase = ''
py.test
'';
# Tests require extra dependencies
doCheck = false;
meta = with stdenv.lib; {
homepage = http://flask.pocoo.org/;
description = "A microframework based on Werkzeug, Jinja 2, and good intentions";
license = licenses.bsd3;
};
}