nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python312Packages.celery-batches: 0.9 -> 0.10

+3 -3
+3 -3
pkgs/development/python-modules/celery-batches/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "celery-batches"; 11 - version = "0.9"; 11 + version = "0.10"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "clokep"; 16 16 repo = "celery-batches"; 17 17 tag = "v${version}"; 18 - hash = "sha256-w7k8VPtJf9VRB8lJC/ENk3kIMPITd+qRIXm1KrCktgc="; 18 + hash = "sha256-9RpM2aC3F88fJBoW8FDd6IN8KlZN+6ESrZFak9j0eNk="; 19 19 }; 20 20 21 21 build-system = [ setuptools ]; ··· 30 30 meta = { 31 31 description = "Allows processing of multiple Celery task requests together"; 32 32 homepage = "https://github.com/clokep/celery-batches"; 33 - changelog = "https://github.com/clokep/celery-batches/blob/v${version}/CHANGELOG.rst"; 33 + changelog = "https://github.com/clokep/celery-batches/blob/${src.tag}/CHANGELOG.rst"; 34 34 license = lib.licenses.bsd3; 35 35 maintainers = with lib.maintainers; [ defelo ]; 36 36 };