Diff: https://github.com/skorokithakis/django-annoying/compare/refs/tags/v0.10.7...refs/tags/v0.10.8 Changelog: https://github.com/skorokithakis/django-annoying/releases/tag/v$version
46 lines
962 B
Nix
46 lines
962 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
django,
|
|
six,
|
|
pytest-django,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-annoying";
|
|
version = "0.10.8";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skorokithakis";
|
|
repo = "django-annoying";
|
|
tag = "v${version}";
|
|
hash = "sha256-zBOHVar4iKb+BioIwmDosNZKi/0YcjYfBusn0Lv8pMw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
django
|
|
six
|
|
];
|
|
|
|
DJANGO_SETTINGS_MODULE = "tests.settings";
|
|
|
|
nativeCheckInputs = [
|
|
pytest-django
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Django application that tries to eliminate annoying things in the Django framework";
|
|
homepage = "https://skorokithakis.github.io/django-annoying/";
|
|
changelog = "https://github.com/skorokithakis/django-annoying/releases/tag/v$version";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|