15 buildPythonPackage rec {
16 pname = "django-timezone-field";
20 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
26 hash = "sha256-q06TuYkBA4z6tJdT3an6Z8o1i/o85XbYa1JYZBHC8lI=";
29 build-system = [ poetry-core ];
31 dependencies = [ django ];
33 pythonImportsCheck = [
34 # Requested setting USE_DEPRECATED_PYTZ, but settings are not configured.
39 export DJANGO_SETTINGS_MODULE=tests.settings
51 description = "Django app providing database, form and serializer fields for pytz timezone objects";
52 homepage = "https://github.com/mfogel/django-timezone-field";
53 license = licenses.bsd2;
54 maintainers = with maintainers; [ hexa ];