Unverified Commit 047206e2 authored by Yorick's avatar Yorick Committed by GitHub
Browse files

Merge pull request #251943 from DerDennisOP/django-google-analytics-app

python3.pkgs.django-google-analytics-app: init at 6.0.0
parents 1b533471 833956a6
Loading
Loading
Loading
Loading
+54 −0
Original line number Diff line number Diff line
{ lib
, beautifulsoup4
, buildPythonPackage
, celery
, django
, fetchFromGitHub
, importlib-metadata
, python
, pythonOlder
, requests
, structlog
}:

buildPythonPackage rec {
  pname = "django-google-analytics-app";
  version = "6.0.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "praekeltfoundation";
    repo = "django-google-analytics";
    rev = "refs/tags/${version}";
    hash = "sha256-0KLfGZY8qq5JGb+LJXpQRS76+qXtrf/hv6QLenm+BhQ=";
  };

  propagatedBuildInputs = [
    beautifulsoup4
    celery
    django
    importlib-metadata
    requests
    structlog
  ];

  checkPhase = ''
    runHook preCheck
    ${python.interpreter} -m django check --settings=test_settings
    runHook postCheck
  '';

  pythonImportsCheck = [
    "google_analytics"
  ];

  meta = with lib; {
    description = "Django Google Analytics brings the power of server side/non-js Google Analytics to your Django projects";
    homepage = "https://github.com/praekeltfoundation/django-google-analytics/";
    changelog = "https://github.com/praekeltfoundation/django-google-analytics/releases/tag/${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ derdennisop ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2908,6 +2908,8 @@ self: super: with self; {
  django-gravatar2 = callPackage ../development/python-modules/django-gravatar2 { };
  django-google-analytics-app = callPackage ../development/python-modules/django-google-analytics-app { };
  django-guardian = callPackage ../development/python-modules/django-guardian { };
  django-haystack = callPackage ../development/python-modules/django-haystack { };