f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
82 lines
1.5 KiB
Nix
82 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
aioresponses,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
cryptography,
|
|
fetchFromGitHub,
|
|
http-ece,
|
|
poetry-core,
|
|
protobuf,
|
|
pytest-asyncio,
|
|
pytest-mock,
|
|
pytest-socket,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests-mock,
|
|
sphinx,
|
|
sphinx-autodoc-typehints,
|
|
sphinx-rtd-theme,
|
|
sphinxHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "firebase-messaging";
|
|
version = "0.3.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sdb9696";
|
|
repo = "firebase-messaging";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-pZpnekJ11yx3L8l56vZOa4uS+jJMxUkYODgNAqysVeY=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
sphinxHook
|
|
] ++ passthru.optional-dependencies.docs;
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
cryptography
|
|
http-ece
|
|
protobuf
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
docs = [
|
|
sphinx
|
|
sphinx-autodoc-typehints
|
|
sphinx-rtd-theme
|
|
];
|
|
};
|
|
|
|
pythonImportsCheck = [ "firebase_messaging" ];
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
async-timeout
|
|
requests-mock
|
|
pytest-asyncio
|
|
pytest-mock
|
|
pytest-socket
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library to subscribe to GCM/FCM and receive notifications within a python application";
|
|
homepage = "https://github.com/sdb9696/firebase-messaging";
|
|
changelog = "https://github.com/sdb9696/firebase-messaging/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|