blob: 032830d5396510b4fe897195c9ac85d0b63aa0f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "0.3";
format = "setuptools";
pname = "httpauth";
src = fetchPypi {
inherit pname version;
sha256 = "0qas7876igyz978pgldp5r7n7pis8n4vf0v87gxr9l7p7if5lr3l";
};
doCheck = false;
meta = with lib; {
description = "WSGI HTTP Digest Authentication middleware";
homepage = "https://github.com/jonashaag/httpauth";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}
|