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

python312Packages.garth: format with nixfmt

+13 -16
+13 -16
pkgs/development/python-modules/garth/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pdm-backend 5 - , pydantic 6 - , pytest-vcr 7 - , pytestCheckHook 8 - , pythonOlder 9 - , requests 10 - , requests-oauthlib 11 }: 12 13 buildPythonPackage rec { ··· 22 hash = "sha256-WuGeZ2EggyhbEDIbjg4ffIFaj2DyHi8Tvowhoi5k2Os="; 23 }; 24 25 - build-system = [ 26 - pdm-backend 27 - ]; 28 29 dependencies = [ 30 pydantic ··· 37 pytestCheckHook 38 ]; 39 40 - pythonImportsCheck = [ 41 - "garth" 42 - ]; 43 44 disabledTests = [ 45 # Tests require network access
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + pdm-backend, 6 + pydantic, 7 + pytest-vcr, 8 + pytestCheckHook, 9 + pythonOlder, 10 + requests, 11 + requests-oauthlib, 12 }: 13 14 buildPythonPackage rec { ··· 23 hash = "sha256-WuGeZ2EggyhbEDIbjg4ffIFaj2DyHi8Tvowhoi5k2Os="; 24 }; 25 26 + build-system = [ pdm-backend ]; 27 28 dependencies = [ 29 pydantic ··· 36 pytestCheckHook 37 ]; 38 39 + pythonImportsCheck = [ "garth" ]; 40 41 disabledTests = [ 42 # Tests require network access