depot/third_party/nixpkgs/pkgs/development/python-modules/django-statici18n/default.nix
Default email a6d62be0d1 Project import generated by Copybara.
GitOrigin-RevId: ac169ec6371f0d835542db654a65e0f2feb07838
2021-12-26 18:43:05 +01:00

24 lines
709 B
Nix

{ lib, buildPythonPackage, fetchPypi, django, django_appconf }:
buildPythonPackage rec {
pname = "django-statici18n";
version = "2.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "5c85192fa95e3ef3727517ac104add8959fc0a54be3d13440a8a3319fddbc778";
};
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 ];
};
}