18 lines
542 B
Nix
18 lines
542 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
django, django_appconf, six}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-statici18n";
|
|
version = "1.8.3";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0dgpnnxazrgfc7jd6ldvdwpyhh0fywviywfwnjgglwkphgaflamr";
|
|
};
|
|
propagatedBuildInputs = [ django django_appconf six ];
|
|
meta = {
|
|
description = "A Django app that provides helper for generating Javascript catalog to static files.";
|
|
maintainers = with lib.maintainers; [ schmittlauch ];
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|