nixpkgs/pkgs/development/python-modules/httpauth/default.nix
2024-05-31 03:00:07 +00:00

26 lines
501 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
version = "0.4.1";
format = "setuptools";
pname = "httpauth";
src = fetchPypi {
inherit pname version;
sha256 = "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; [ ];
};
}