pythonPackages.flask-ldap-login: init at 0.3.0

This commit is contained in:
Jörg Thalheim
2017-01-13 23:55:52 +01:00
parent c065c400e9
commit b3bef109c2
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}