2495e3f88b
GitOrigin-RevId: 78cd22c1b8604de423546cd49bfe264b786eca13
24 lines
709 B
Nix
24 lines
709 B
Nix
{ lib, buildPythonPackage, fetchPypi, django, django_appconf }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-statici18n";
|
|
version = "2.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "dbcdac190d93e0b4eabcab8875c8eb68795eceb442f926843ec5cbe1432fe628";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|