25 lines
705 B
Nix
25 lines
705 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|