1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "0.3"; 8 pname = "httpauth"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0qas7876igyz978pgldp5r7n7pis8n4vf0v87gxr9l7p7if5lr3l"; 13 }; 14 15 doCheck = false; 16 17 meta = with lib; { 18 description = "WSGI HTTP Digest Authentication middleware"; 19 homepage = "https://github.com/jonashaag/httpauth"; 20 license = licenses.bsd2; 21 maintainers = with maintainers; [ ]; 22 }; 23 24}