python.pkgs.flask-limiter: init at 1.0.1
This commit is contained in:
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user