11 buildPythonPackage rec {
12 pname = "django-webpush";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "safwanrahman";
20 repo = "django-webpush";
21 rev = "refs/tags/${version}";
22 hash = "sha256-Mwp53apdPpBcn7VfDbyDlvLAVAG65UUBhT0w9OKjKbU=";
25 pythonRelaxDeps = [ "pywebpush" ];
39 pythonImportsCheck = [ "webpush" ];
42 description = "Module for integrating and sending Web Push Notification in Django Application";
43 homepage = "https://github.com/safwanrahman/django-webpush/";
44 changelog = "https://github.com/safwanrahman/django-webpush/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
45 license = licenses.gpl3Plus;
46 maintainers = with maintainers; [ derdennisop ];