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