Unverified Commit f9480b46 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

python311Packages.flask-simpleldap: init at 2.0.0 (#293002)

parents c636130b 34d4a3a8
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  flask,
  python-ldap,
  setuptools,
}:

buildPythonPackage rec {
  pname = "flask-simpleldap";
  version = "2.0.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "alexferl";
    repo = "flask-simpleldap";
    rev = "refs/tags/v${version}";
    hash = "sha256-WcedTtEwaSc3BYFE3L0FZrtKKdbwk7r3qSPP8evtYlc=";
  };

  build-system = [
    setuptools
  ];
  dependencies = [
    flask
    python-ldap
  ];

  pythonImportsCheck = [ "flask_simpleldap" ];

  meta = with lib; {
    description = "LDAP authentication extension for Flask";
    homepage = "https://github.com/alexferl/flask-simpleldap";
    license = licenses.mit;
    maintainers = with maintainers; [ kip93 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4577,6 +4577,8 @@ self: super: with self; {
  flask-silk = callPackage ../development/python-modules/flask-silk { };
  flask-simpleldap = callPackage ../development/python-modules/flask-simpleldap { };
  flask-sock = callPackage ../development/python-modules/flask-sock { };
  flask-socketio = callPackage ../development/python-modules/flask-socketio { };