mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
21 lines
538 B
Nix
21 lines
538 B
Nix
{ lib, buildPythonPackage, fetchPypi, flask }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Flask-HTTPAuth";
|
|
version = "3.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1fb1kr1iw6inkwfv160rpjx54vv1q9b90psdyyghyy1f6dhvgy3f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ flask ];
|
|
|
|
meta = with lib; {
|
|
description = "Extension that provides HTTP authentication for Flask routes";
|
|
homepage = "https://github.com/miguelgrinberg/Flask-HTTPAuth";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ geistesk ];
|
|
};
|
|
}
|