2019-06-07 04:21:05 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
|
|
|
, flake8, mock, nose, pytest
|
|
|
|
, cryptography
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "py-vapid";
|
2020-07-31 09:56:43 +01:00
|
|
|
version = "1.7.1";
|
2019-06-07 04:21:05 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-07-31 09:56:43 +01:00
|
|
|
sha256 = "f05cecaa9fc009515086d04b6117324f30eedf1a196f67fb1ec360a9dbdad4ee";
|
2019-06-07 04:21:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ cryptography ];
|
|
|
|
|
|
|
|
checkInputs = [ flake8 mock nose pytest ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "VAPID is a voluntary standard for WebPush subscription providers";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mozilla-services/vapid";
|
2019-06-07 04:21:05 +01:00
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
}
|