pythonPackages.flask_ldap_login: 0.3.0 -> 0.3.4

This commit is contained in:
Josef Kemetmüller 2018-09-09 20:39:46 +02:00
parent d4e89680d2
commit 25f8753bf4

View File

@ -1,14 +1,16 @@
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch { stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch
, flask, flask_wtf, flask_testing, ldap , flask, flask_wtf, flask_testing, ldap
, mock, nose }: , mock, nose }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "flask-ldap-login"; pname = "flask-ldap-login";
version = "0.3.0"; version = "0.3.4";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "ContinuumIO";
sha256 = "085rik7q8xrp5g95346p6jcp9m2yr8kamwb2kbiw4q0b0fpnnlgq"; repo = "flask-ldap-login";
rev = version;
sha256 = "1l6zahqhwn5g9fmhlvjv80288b5h2fk5mssp7amdkw5ysk570wzp";
}; };
patches = [ patches = [