25 lines
661 B
Nix
25 lines
661 B
Nix
# WARNING: This file was automatically generated. You should avoid editing it.
|
|
# If you run pynixify again, the file will be either overwritten or
|
|
# deleted, and you will lose the changes you made to it.
|
|
|
|
{ buildPythonPackage, django, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-mjml";
|
|
version = "0.11.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1vzpd93ab7lfjyw9v90k8lynh2x735xf9ygkk5cz406y2q93jywd";
|
|
};
|
|
|
|
propagatedBuildInputs = [ django ];
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Use MJML in Django templates";
|
|
homepage = "https://github.com/liminspace/django-mjml";
|
|
};
|
|
}
|