2022-12-04 04:24:37 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, django, poetry-core, cookiecutter }:
|
2021-01-20 02:04:30 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "django-tailwind";
|
2024-08-04 17:51:12 +00:00
|
|
|
version = "3.8.0";
|
|
|
|
pyproject = true;
|
2021-01-20 02:04:30 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2024-08-04 17:51:12 +00:00
|
|
|
pname = "django_tailwind";
|
|
|
|
inherit version;
|
|
|
|
sha256 = "sha256-McL0p4edaFwt4P6vC2PyRiALNzN76k19uvtZvD8QwAg=";
|
2021-01-20 02:04:30 +00:00
|
|
|
};
|
|
|
|
|
2022-12-04 04:24:37 +00:00
|
|
|
nativeBuildInputs = [ poetry-core ];
|
2024-08-04 17:51:12 +00:00
|
|
|
propagatedBuildInputs = [ django ];
|
2021-01-20 02:04:30 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-02-13 13:56:02 +00:00
|
|
|
meta = with lib; {
|
2021-01-20 02:04:30 +00:00
|
|
|
description = "Integration of Tailwind CSS with Django";
|
|
|
|
homepage = "https://github.com/timonweb/django-tailwind";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|