Merge pull request #196782 from r-ryantm/auto-update/python310Packages.django-celery-beat

python310Packages.django-celery-beat: 2.3.0 -> 2.4.0
main
Fabian Affolter 2 years ago committed by GitHub
commit 9be64ddaff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      pkgs/development/python-modules/django-celery-beat/default.nix

@ -9,15 +9,20 @@
, pytest-timeout
, pytest-django
, case
, pytestCheckHook }:
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "django-celery-beat";
version = "2.3.0";
version = "2.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-uiT4btlWug7itDI3pJMD6/Wqfg+wzLfgVCt+MaRj3Lo=";
hash = "sha256-WO/pRg5Dc6JBwrPYOVGPKaKK4ZvICo26INogTH6lBhM=";
};
propagatedBuildInputs = [
@ -40,7 +45,9 @@ buildPythonPackage rec {
"t/unit/test_schedulers.py"
];
pythonImportsCheck = [ "django_celery_beat" ];
pythonImportsCheck = [
"django_celery_beat"
];
meta = with lib; {
description = "Celery Periodic Tasks backed by the Django ORM";

Loading…
Cancel
Save