summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/httpauth/default.nix
blob: 6601cd73078ce7d16d82dc16df672a45a8afeb6a (plain)
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 = {
    description = "WSGI HTTP Digest Authentication middleware";
    homepage = "https://github.com/jonashaag/httpauth";
    license = lib.licenses.bsd2;
    maintainers = [ ];
  };
}