2021-11-12 09:22:34 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, django, django_appconf }:
|
2021-04-20 18:55:14 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "django-statici18n";
|
2021-11-25 22:46:44 +00:00
|
|
|
version = "2.1.1";
|
2021-04-20 18:55:14 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-25 22:46:44 +00:00
|
|
|
sha256 = "5c85192fa95e3ef3727517ac104add8959fc0a54be3d13440a8a3319fddbc778";
|
2021-04-20 18:55:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|