python.pkgs.flask-limiter: init at 1.0.1
This commit is contained in:
parent
efb915e020
commit
92e535d3f1
19
pkgs/development/python-modules/flask-limiter/default.nix
Normal file
19
pkgs/development/python-modules/flask-limiter/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchPypi, buildPythonPackage, flask, limits }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Flask-Limiter";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1f0diannnc6rc0ngsh222lws3qf89wxm0aschaxxvwjvybf9iklc";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ flask limits ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Rate limiting for flask applications";
|
||||
homepage = https://flask-limiter.readthedocs.org/;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -8053,6 +8053,8 @@ in {
|
||||
|
||||
flask_elastic = callPackage ../development/python-modules/flask-elastic { };
|
||||
|
||||
flask-limiter = callPackage ../development/python-modules/flask-limiter { };
|
||||
|
||||
flask_login = callPackage ../development/python-modules/flask-login { };
|
||||
|
||||
flask_ldap_login = callPackage ../development/python-modules/flask-ldap-login { };
|
||||
|
Loading…
Reference in New Issue
Block a user