Files
nixpkgs/pkgs/development/python-modules/flask-httpauth/default.nix
T
Martin Weinelt 48d1d4245c python310Packages.flask-httpauth: Fix tests
by passing in flask[async].

Also convert to pep517 build, reformat.
2023-03-03 23:59:33 +01:00

46 lines
853 B
Nix

{ 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 ];
};
}