httpauth: init at 0.2

This commit is contained in:
Matthias Beyer 2015-06-27 17:00:43 +02:00
parent 886a872853
commit ce10f31e0e

View file

@ -3433,6 +3433,25 @@ let
};
};
httpauth = buildPythonPackage rec {
version = "0.2";
name = "httpauth-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/h/httpauth/${name}.tar.gz";
md5 = "78d1835a80955e68e98a3ca5ab7f7dbd";
};
doCheck = false;
meta = {
description = "WSGI HTTP Digest Authentication middleware";
homepage = https://github.com/jonashaag/httpauth;
license = licenses.bsd2;
maintainers = with maintainers; [ matthiasbeyer ];
};
};
itsdangerous = buildPythonPackage rec {
name = "itsdangerous-0.24";