nixpkgs/pkgs/development/python-modules/flask-ldap-login.nix
Frederik Rietdijk 959842a9c7 Python: add pname attributes to libraries
so that we can use the update script.
2017-05-27 11:30:21 +02:00

28 lines
750 B
Nix

{ stdenv, buildPythonPackage, fetchurl
, flask, flask_wtf, flask_testing, ldap
, mock, nose }:
buildPythonPackage rec {
pname = "flask-ldap-login";
version = "0.3.0";
name = "${pname}-${version}";
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 ];
};
}