Unverified Commit 68719046 authored by Flakebi's avatar Flakebi
Browse files

python10Packages.flask-sessionstore: init at 0.4.5

parent d0d2104a
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ lib
, fetchPypi
, buildPythonPackage
, flask
, nose
}:

buildPythonPackage rec {
  pname = "flask-sessionstore";
  version = "0.4.5";
  format = "setuptools";

  src = fetchPypi {
    pname = "Flask-Sessionstore";
    inherit version;
    hash = "sha256-AQ3jWrnw2UI8L3nFEx4AhDwGP4R8Tr7iBMsDS5jLQPQ=";
  };

  propagatedBuildInputs = [ flask ];

  pythonImportsCheck = [ "flask_sessionstore" ];

  nativeCheckInputs = [ nose ];

  checkPhase = ''
    nosetests -s
  '';

  meta = with lib; {
    description = "Session Storage Backends for Flask";
    homepage = "https://github.com/mcrowson/flask-sessionstore";
    license = licenses.bsd3;
    maintainers = with maintainers; [ Flakebi ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3625,6 +3625,8 @@ self: super: with self; {

  flask-session = callPackage ../development/python-modules/flask-session { };

  flask-sessionstore = callPackage ../development/python-modules/flask-sessionstore { };

  flask-security-too = callPackage ../development/python-modules/flask-security-too { };

  flask-silk = callPackage ../development/python-modules/flask-silk { };