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
python311Packages.celery-singleton: modernize
Peder Bergebakken Sundt
2 years ago
cf6dbb60
3acdcfb6
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
celery-singleton
default.nix
+3
-3
pkgs/development/python-modules/celery-singleton/default.nix
reviewed
···
14
14
buildPythonPackage rec {
15
15
pname = "celery-singleton";
16
16
version = "0.3.1";
17
17
-
format = "pyproject";
17
17
+
pyproject = true;
18
18
19
19
src = fetchFromGitHub {
20
20
owner = "steinitzu";
···
33
33
})
34
34
];
35
35
36
36
-
nativeBuildInputs = [ poetry-core ];
36
36
+
build-system = [ poetry-core ];
37
37
38
38
-
propagatedBuildInputs = [
38
38
+
dependencies = [
39
39
celery
40
40
redis
41
41
];