depot/nix/pkgs/baserow/backend/pynixify/packages/django-celery-beat/default.nix

27 lines
769 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, celery, django, django-timezone-field, fetchPypi, lib
, python-crontab }:
buildPythonPackage rec {
pname = "django-celery-beat";
version = "2.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "0d02cac65h6jsb760x98fhmg9b5dgk2hrxkvn2ym25al16rmxblp";
};
propagatedBuildInputs =
[ celery django-timezone-field python-crontab django ];
# TODO FIXME
doCheck = false;
meta = with lib; {
description = "Database-backed Periodic Tasks.";
homepage = "https://github.com/celery/django-celery-beat";
};
}