at master 481 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 version = "0.4.1"; 9 format = "setuptools"; 10 pname = "httpauth"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-C6rnFroAd5vOULBMwsLSyeSK5zPXOEgGHDSYt+Pm2dQ="; 15 }; 16 17 doCheck = false; 18 19 meta = with lib; { 20 description = "WSGI HTTP Digest Authentication middleware"; 21 homepage = "https://github.com/jonashaag/httpauth"; 22 license = licenses.bsd2; 23 maintainers = [ ]; 24 }; 25}