27 lines
739 B
Nix
27 lines
739 B
Nix
|
# 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";
|
||
|
version = "4.2.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0wg97zp5sldd0w908m5mia9544vwm5fbansimsa51aldcpg0qy4p";
|
||
|
};
|
||
|
|
||
|
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/";
|
||
|
};
|
||
|
}
|