pythonPackages.flask-ldap-login: init at 0.3.0
This commit is contained in:
parent
c065c400e9
commit
b3bef109c2
25
pkgs/development/python-modules/flask-ldap-login.nix
Normal file
25
pkgs/development/python-modules/flask-ldap-login.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, buildPythonPackage, fetchurl
|
||||
, flask, flask_wtf, flask_testing, ldap
|
||||
, mock, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "flask-ldap-login-0.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/f/flask-ldap-login/${name}.tar.gz";
|
||||
sha256 = "085rik7q8xrp5g95346p6jcp9m2yr8kamwb2kbiw4q0b0fpnnlgq";
|
||||
};
|
||||
|
||||
buildInputs = [ nose mock flask_testing ];
|
||||
propagatedBuildInputs = [ flask flask_wtf ldap ];
|
||||
|
||||
checkPhase = "nosetests -d";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/ContinuumIO/flask-ldap-login;
|
||||
description = "User session management for Flask";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ mic92 ];
|
||||
};
|
||||
}
|
@ -11324,6 +11324,8 @@ in {
|
||||
|
||||
flask_login = callPackage ../development/python-modules/flask-login.nix { };
|
||||
|
||||
flask_ldap_login = callPackage ../development/python-modules/flask-ldap-login.nix { };
|
||||
|
||||
flask_migrate = buildPythonPackage rec {
|
||||
name = "Flask-Migrate-${version}";
|
||||
version = "1.7.0";
|
||||
|
Loading…
Reference in New Issue
Block a user