about summary refs log tree commit diff
path: root/pkgs/development/python-modules/httpauth/default.nix
blob: 2fb598918a14a2c5b785ea6b224a4322448d7e2c (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 = with maintainers; [ ];
  };
}