Merge pull request #205189 from r-ryantm/auto-update/python310Packages.py-vapid

python310Packages.py-vapid: 1.8.2 -> 1.9.0
This commit is contained in:
Fabian Affolter 2022-12-14 12:54:00 +01:00 committed by GitHub
commit c917b69e56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,24 +1,41 @@
{ lib, buildPythonPackage, fetchPypi { lib
, flake8, mock, nose, pytest , buildPythonPackage
, fetchPypi
, flake8
, mock
, nose
, pytest
, cryptography , cryptography
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "py-vapid"; pname = "py-vapid";
version = "1.8.2"; version = "1.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "874f21910f2103c56228cded941d6e733dd8f1eb12876137919533bfacb65a48"; hash = "sha256-BmSreJl0LvKyhzl6TUYe9pHtDML1hyBRKNjPYX/9uRk=";
}; };
propagatedBuildInputs = [ cryptography ]; propagatedBuildInputs = [
cryptography
];
checkInputs = [ flake8 mock nose pytest ]; checkInputs = [
flake8
mock
nose
pytest
];
meta = with lib; { meta = with lib; {
description = "VAPID is a voluntary standard for WebPush subscription providers"; description = "Library for VAPID header generation";
homepage = "https://github.com/mozilla-services/vapid"; homepage = "https://github.com/mozilla-services/vapid";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ ];
}; };
} }