f33389a4fa
https://github.com/adamchainz/django-htmx/blob/1.27.0/docs/changelog.rst This commit was automatically generated using update-python-libraries.
45 lines
914 B
Nix
45 lines
914 B
Nix
{
|
|
lib,
|
|
asgiref,
|
|
buildPythonPackage,
|
|
django,
|
|
fetchFromGitHub,
|
|
pytest-django,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-htmx";
|
|
version = "1.27.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adamchainz";
|
|
repo = "django-htmx";
|
|
tag = version;
|
|
hash = "sha256-5Z/Ji1J6ofOHG64aj9bsHEw6EBELFQ4Lwsn8vGQUFe8=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
buildInputs = [ django ];
|
|
|
|
dependencies = [ asgiref ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-django
|
|
];
|
|
|
|
pythonImportsCheck = [ "django_htmx" ];
|
|
|
|
meta = {
|
|
description = "Extensions for using Django with htmx";
|
|
homepage = "https://github.com/adamchainz/django-htmx";
|
|
changelog = "https://github.com/adamchainz/django-htmx/blob/${src.tag}/docs/changelog.rst";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ minijackson ];
|
|
};
|
|
}
|