httpauth: init at 0.2
This commit is contained in:
parent
886a872853
commit
ce10f31e0e
1 changed files with 19 additions and 0 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue