python3.pkgs.django-google-analytics-app: init at 6.0.0
This commit is contained in:
parent
48a24fce1d
commit
833956a621
2 changed files with 56 additions and 0 deletions
|
@ -0,0 +1,54 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -2868,6 +2868,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 { };
|
||||
|
|
Loading…
Reference in a new issue