tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.celery-batches: 0.9 -> 0.10
R. Ryantm
1 year ago
a2b361d7
133091c9
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
celery-batches
default.nix
+3
-3
pkgs/development/python-modules/celery-batches/default.nix
reviewed
···
8
8
9
9
buildPythonPackage rec {
10
10
pname = "celery-batches";
11
11
-
version = "0.9";
11
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
18
-
hash = "sha256-w7k8VPtJf9VRB8lJC/ENk3kIMPITd+qRIXm1KrCktgc=";
18
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
33
-
changelog = "https://github.com/clokep/celery-batches/blob/v${version}/CHANGELOG.rst";
33
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
};