Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 538 B view raw
1{ lib, buildPythonPackage, fetchPypi, flask }: 2 3buildPythonPackage rec { 4 pname = "Flask-HTTPAuth"; 5 version = "3.3.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1fb1kr1iw6inkwfv160rpjx54vv1q9b90psdyyghyy1f6dhvgy3f"; 10 }; 11 12 propagatedBuildInputs = [ flask ]; 13 14 meta = with lib; { 15 description = "Extension that provides HTTP authentication for Flask routes"; 16 homepage = "https://github.com/miguelgrinberg/Flask-HTTPAuth"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ geistesk ]; 19 }; 20}