python312Packages.celery-batches: 0.9 -> 0.10

R. Ryantm a2b361d7 133091c9

Changed files
+3 -3
pkgs
development
python-modules
celery-batches
+3 -3
pkgs/development/python-modules/celery-batches/default.nix
···
buildPythonPackage rec {
pname = "celery-batches";
-
version = "0.9";
pyproject = true;
src = fetchFromGitHub {
owner = "clokep";
repo = "celery-batches";
tag = "v${version}";
-
hash = "sha256-w7k8VPtJf9VRB8lJC/ENk3kIMPITd+qRIXm1KrCktgc=";
};
build-system = [ setuptools ];
···
meta = {
description = "Allows processing of multiple Celery task requests together";
homepage = "https://github.com/clokep/celery-batches";
-
changelog = "https://github.com/clokep/celery-batches/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ defelo ];
};
···
buildPythonPackage rec {
pname = "celery-batches";
+
version = "0.10";
pyproject = true;
src = fetchFromGitHub {
owner = "clokep";
repo = "celery-batches";
tag = "v${version}";
+
hash = "sha256-9RpM2aC3F88fJBoW8FDd6IN8KlZN+6ESrZFak9j0eNk=";
};
build-system = [ setuptools ];
···
meta = {
description = "Allows processing of multiple Celery task requests together";
homepage = "https://github.com/clokep/celery-batches";
+
changelog = "https://github.com/clokep/celery-batches/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ defelo ];
};