Commit 03938279 authored by Dennis Wuitz's avatar Dennis Wuitz
Browse files

python3.pkgs.django-pwa: init at 1.1.0

parent 3821bd34
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, django
, fetchFromGitHub
, python
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "django-pwa";
  version = "1.1.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "silviolleite";
    repo = "django-pwa";
    rev = "refs/tags/v${version}";
    hash = "sha256-tP1+Jm9hdvN/ZliuVHN8tqy24/tOK1LUUiJv1xUqRrY=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    django
  ];

  pyImportCheck = [
    "pwa"
  ];

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} runtests.py
    runHook postCheck
  '';

  meta = with lib; {
    description = "A Django app to include a manifest.json and Service Worker instance to enable progressive web app behavoir";
    homepage = "https://github.com/silviolleite/django-pwa";
    changelog = "https://github.com/silviolleite/django-pwa/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ derdennisop ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3054,6 +3054,8 @@ self: super: with self; {
  django-prometheus = callPackage ../development/python-modules/django-prometheus { };
  django-pwa = callPackage ../development/python-modules/django-pwa { };
  django-q = callPackage ../development/python-modules/django-q { };
  django-scheduler = callPackage ../development/python-modules/django-scheduler { };