depot/nix/pkgs/baserow/backend/pynixify/packages/django-timezone-field/default.nix

27 lines
739 B
Nix
Raw Normal View History

2021-12-21 00:18:16 +00:00
# WARNING: This file was automatically generated. You should avoid editing it.
# If you run pynixify again, the file will be either overwritten or
# deleted, and you will lose the changes you made to it.
{ buildPythonPackage, django, fetchPypi, lib, pytz }:
buildPythonPackage rec {
pname = "django-timezone-field";
2022-11-02 02:02:11 +00:00
version = "4.2.3";
2021-12-21 00:18:16 +00:00
src = fetchPypi {
inherit pname version;
2022-11-02 02:02:11 +00:00
sha256 = "1y4ji0ifslhj1l9m9wrqnnj85qbv5g1y9ryk8y4fyarq969bvmax";
2021-12-21 00:18:16 +00:00
};
propagatedBuildInputs = [ django pytz ];
# TODO FIXME
doCheck = false;
meta = with lib; {
description =
"A Django app providing database and form fields for pytz timezone objects.";
homepage = "http://github.com/mfogel/django-timezone-field/";
};
}