1{ lib, buildPythonPackage, fetchPypi, django, django_appconf }:
2
3buildPythonPackage rec {
4 pname = "django-statici18n";
5 version = "2.0.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0cqwfirzjbanibq3mfz9lcwqnc8655zpysf9hk9g3lbwj2m478sp";
10 };
11
12 propagatedBuildInputs = [ django django_appconf ];
13
14 # pypi package does not contains test harness
15 # source tarball requires setting up a config
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Helper for generating Javascript catalog to static files";
20 homepage = "https://github.com/zyegfryed/django-statici18n";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ greizgh schmittlauch ];
23 };
24}