depot/third_party/nixpkgs/pkgs/development/python-modules/httpauth/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

25 lines
499 B
Nix

{
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; [ ];
};
}