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

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.app-model: format with nixfmt

+15 -18
+15 -18
pkgs/development/python-modules/app-model/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , hatch-vcs 5 - , hatchling 6 - , in-n-out 7 - , psygnal 8 - , pydantic 9 - , pydantic-compat 10 - , pytestCheckHook 11 - , pythonOlder 12 - , typing-extensions 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + hatch-vcs, 6 + hatchling, 7 + in-n-out, 8 + psygnal, 9 + pydantic, 10 + pydantic-compat, 11 + pytestCheckHook, 12 + pythonOlder, 13 + typing-extensions, 13 14 }: 14 15 15 16 buildPythonPackage rec { ··· 40 39 typing-extensions 41 40 ]; 42 41 43 - nativeCheckInputs = [ 44 - pytestCheckHook 45 - ]; 42 + nativeCheckInputs = [ pytestCheckHook ]; 46 43 47 - pythonImportsCheck = [ 48 - "app_model" 49 - ]; 44 + pythonImportsCheck = [ "app_model" ]; 50 45 51 46 meta = with lib; { 52 47 description = "Module to implement generic application schema";