2021-04-29 12:08:13 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, django, poetry, cookiecutter }:
|
2021-01-20 02:04:30 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "django-tailwind";
|
2021-04-29 12:08:13 +00:00
|
|
|
version = "2.0.1";
|
2021-01-20 02:04:30 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-04-29 12:08:13 +00:00
|
|
|
sha256 = "sha256:187alssasfmnbq1rdhgs8np1j494mcgndxx7cw3lyyzqmkrsn0c2";
|
2021-01-20 02:04:30 +00:00
|
|
|
};
|
|
|
|
|
2022-07-07 21:06:11 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace 'cookiecutter = "^1.7.2"' 'cookiecutter = ">=1.7.2"'
|
|
|
|
'';
|
|
|
|
|
2021-04-29 12:08:13 +00:00
|
|
|
nativeBuildInputs = [ poetry ];
|
|
|
|
propagatedBuildInputs = [ django cookiecutter ];
|
|
|
|
format = "pyproject";
|
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;
|
|
|
|
};
|
|
|
|
}
|