blob: 80362a801d36b220107d4a020a79300a37d3bcc7 (
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.4.1";
format = "setuptools";
pname = "httpauth";
src = fetchPypi {
inherit pname version;
hash = "sha256-C6rnFroAd5vOULBMwsLSyeSK5zPXOEgGHDSYt+Pm2dQ=";
};
doCheck = false;
meta = with lib; {
description = "WSGI HTTP Digest Authentication middleware";
homepage = "https://github.com/jonashaag/httpauth";
license = licenses.bsd2;
maintainers = [ ];
};
}
|