django-statici18n: init at 2.0.1

This commit is contained in:
Greizgh 2021-04-20 19:55:14 +02:00
parent a50f89a085
commit 48934ca5c1
No known key found for this signature in database
GPG Key ID: 68B0B42612A108B2
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, django, django_appconf }:
buildPythonPackage rec {
pname = "django-statici18n";
version = "2.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0cqwfirzjbanibq3mfz9lcwqnc8655zpysf9hk9g3lbwj2m478sp";
};
propagatedBuildInputs = [ django django_appconf ];
# pypi package does not contains test harness
# source tarball requires setting up a config
doCheck = false;
meta = with lib; {
description = "Helper for generating Javascript catalog to static files";
homepage = "https://github.com/zyegfryed/django-statici18n";
license = licenses.bsd3;
maintainers = with maintainers; [ greizgh schmittlauch ];
};
}

View File

@ -2177,6 +2177,8 @@ in {
django-sr = callPackage ../development/python-modules/django-sr { };
django-statici18n = callPackage ../development/python-modules/django-statici18n { };
django-storages = callPackage ../development/python-modules/django-storages { };
django_tagging = callPackage ../development/python-modules/django_tagging { };