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

python311Packages.celery-singleton: modernize

+3 -3
+3 -3
pkgs/development/python-modules/celery-singleton/default.nix
··· 14 14 buildPythonPackage rec { 15 15 pname = "celery-singleton"; 16 16 version = "0.3.1"; 17 - format = "pyproject"; 17 + pyproject = true; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "steinitzu"; ··· 33 33 }) 34 34 ]; 35 35 36 - nativeBuildInputs = [ poetry-core ]; 36 + build-system = [ poetry-core ]; 37 37 38 - propagatedBuildInputs = [ 38 + dependencies = [ 39 39 celery 40 40 redis 41 41 ];