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=";
42 pythonImportsCheck = [
47 description = "Module for integrating and sending Web Push Notification in Django Application";
48 homepage = "https://github.com/safwanrahman/django-webpush/";
49 changelog = "https://github.com/safwanrahman/django-webpush/releases/tag/${src.rev}";
50 license = licenses.gpl3Plus;
51 maintainers = with maintainers; [ derdennisop ];