Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / flask-basicauth / default.nix
blob51fe449bc90b76d3d26881b7a7a60e5b2e2de867
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , fetchpatch
5 , flask
6 , python
7 }:
9 buildPythonPackage rec {
10   pname = "flask-basicauth";
11   version = "0.2.0";
13   src = fetchFromGitHub {
14     owner = "jpvanhal";
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-han0OjMI1XmuWKHGVpk+xZB+/+cpV1I+659zOG3hcPY=";
18   };
20   patches = [
21     (fetchpatch {
22       # The unit tests fail due to an invalid import:
23       #   from flask.ext.basicauth import BasicAuth
24       #
25       # This patch replaces it with the correct import:
26       #   from flask_basicauth import BasicAuth
27       #
28       # The patch uses the changes from this pull request,
29       # and therefore can be removed once this pull request
30       # has been merged:
31       #   https://github.com/jpvanhal/flask-basicauth/pull/29
32       name = "fix-test-flask-ext-imports.patch";
33       url = "https://github.com/jpvanhal/flask-basicauth/commit/23f57dc1c3d85ea6fc7f468e8d8c6f19348a0a81.patch";
34       hash = "sha256-njUYjO0TRe3vr5D0XjIfCNcsFlShbGxtFV/DJerAKDE=";
35     })
36   ];
38   propagatedBuildInputs = [ flask ];
40   checkPhase = ''
41     runHook preCheck
42     ${python.interpreter} -m unittest discover
43     runHook postCheck
44   '';
46   pythonImportsCheck = [ "flask_basicauth" ];
48   meta = with lib; {
49     homepage = "https://github.com/jpvanhal/flask-basicauth";
50     description = "HTTP basic access authentication for Flask";
51     license = licenses.mit;
52     maintainers = with maintainers; [ wesnel ];
53   };