nixpkgs/pkgs/development/python-modules/django-statici18n/default.nix
2021-11-12 19:10:54 -08:00

25 lines
697 B
Nix

{ 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 ];
};
}