python3Packages.flask-gravatar: init at 0.5.0

needed for pgadmin4 init
https://github.com/NixOS/nixpkgs/pull/154764
This commit is contained in:
florian on nixos (Florian Brandes) 2022-01-16 11:39:11 +01:00
parent bed1dbe52f
commit c6a18b488c
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchPypi
, flask
, pytestCheckHook
, pygments
}:
buildPythonPackage rec {
pname = "flask-gravatar";
version = "0.5.0";
src = fetchPypi {
pname = "Flask-Gravatar";
inherit version;
sha256 = "YGZfMcLGEokdto/4Aek+06CIHGyOw0arxk0qmSP1YuE=";
};
postPatch = ''
sed -i setup.py \
-e "s|tests_require=tests_require,||g" \
-e "s|extras_require=extras_require,||g" \
-e "s|setup_requires=setup_requires,||g"
# pep8 is deprecated and cov not needed
substituteInPlace pytest.ini \
--replace "--pep8" "" \
--replace "--cov=flask_gravatar --cov-report=term-missing" ""
'';
propagatedBuildInputs = [
flask
];
checkInputs = [
pytestCheckHook
pygments
];
pythonImportsCheck = [ "flask_gravatar" ];
meta = with lib; {
homepage = "https://github.com/zzzsochi/Flask-Gravatar";
description = "Small and simple integration of gravatar into flask";
license = licenses.bsd3;
maintainers = with maintainers; [ gador ];
};
}

View file

@ -2888,6 +2888,8 @@ in {
flask_elastic = callPackage ../development/python-modules/flask-elastic { };
flask-gravatar = callPackage ../development/python-modules/flask-gravatar { };
flask-httpauth = callPackage ../development/python-modules/flask-httpauth { };
flask-jwt-extended = callPackage ../development/python-modules/flask-jwt-extended { };