depot/third_party/nixpkgs/pkgs/development/python-modules/httpauth/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

25 lines
481 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 = [ ];
};
}