Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.model-bakery: format with nixfmt

+12 -17
+12 -17
pkgs/development/python-modules/model-bakery/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , hatchling 5 - , django 6 - , pytestCheckHook 7 - , pythonOlder 8 - , pytest-django 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + hatchling, 6 + django, 7 + pytestCheckHook, 8 + pythonOlder, 9 + pytest-django, 9 10 }: 10 11 11 12 buildPythonPackage rec { ··· 22 23 hash = "sha256-mf6NV7r/9kDCRlszx/QGtfEsC1O/SATd6+EX+w7ptEQ="; 23 24 }; 24 25 25 - build-system = [ 26 - hatchling 27 - ]; 26 + build-system = [ hatchling ]; 28 27 29 - dependencies = [ 30 - django 31 - ]; 28 + dependencies = [ django ]; 32 29 33 30 nativeCheckInputs = [ 34 31 pytest-django 35 32 pytestCheckHook 36 33 ]; 37 34 38 - pythonImportsCheck = [ 39 - "model_bakery" 40 - ]; 35 + pythonImportsCheck = [ "model_bakery" ]; 41 36 42 37 meta = with lib; { 43 38 description = "Object factory for Django";