depot/third_party/nixpkgs/pkgs/development/python-modules/flask-httpauth/default.nix

46 lines
853 B
Nix
Raw Normal View History

{ lib
, python
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, setuptools
, flask
}:
buildPythonPackage rec {
pname = "flask-httpauth";
version = "4.7.0";
format = "pyproject";
disabled = python.pythonOlder "3";
src = fetchPypi {
pname = "Flask-HTTPAuth";
version = version;
hash = "sha256-9xmee60g1baLPwtivd/KdjfFUIfp0C9gWuJuDeR5/ZQ=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
flask
];
pythonImportsCheck = [
"flask_httpauth"
];
nativeCheckInputs = [
pytestCheckHook
] ++ flask.optional-dependencies.async;
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; [ oxzi ];
};
}