21 buildPythonPackage rec {
22 pname = "django-countries";
26 src = fetchFromGitHub {
27 owner = "SmileyChris";
28 repo = "django-countries";
29 rev = "refs/tags/v${version}";
30 hash = "sha256-IR9cJbDVkZrcF3Ti70mV8VeXINQDK8OpwUTWVjD4Zn0=";
33 build-system = [ setuptools ];
49 description = "Provides a country field for Django models";
51 A Django application that provides country choices for use with
52 forms, flag icons static files, and a country field for models.
54 homepage = "https://github.com/SmileyChris/django-countries";
55 changelog = "https://github.com/SmileyChris/django-countries/blob/v${version}/CHANGES.rst";
56 license = licenses.mit;
57 maintainers = with maintainers; [ hexa ];