lol

devpi-client: format with nixfmt

+28 -26
+28 -26
pkgs/development/tools/devpi-client/default.nix
··· 1 - { lib 2 - , devpi-server 3 - , git 4 - , glibcLocales 5 - , python3 6 - , fetchPypi 1 + { 2 + lib, 3 + devpi-server, 4 + git, 5 + glibcLocales, 6 + python3, 7 + fetchPypi, 7 8 }: 8 9 9 10 python3.pkgs.buildPythonApplication rec { ··· 22 23 setuptools-changelog-shortener 23 24 ]; 24 25 25 - buildInputs = [ 26 - glibcLocales 27 - ]; 26 + buildInputs = [ glibcLocales ]; 28 27 29 28 dependencies = with python3.pkgs; [ 30 29 build ··· 36 35 platformdirs 37 36 ]; 38 37 39 - nativeCheckInputs = [ 40 - devpi-server 41 - git 42 - ] ++ (with python3.pkgs; [ 43 - mercurial 44 - mock 45 - pypitoken 46 - pytestCheckHook 47 - sphinx 48 - virtualenv 49 - webtest 50 - wheel 51 - ]); 38 + nativeCheckInputs = 39 + [ 40 + devpi-server 41 + git 42 + ] 43 + ++ (with python3.pkgs; [ 44 + mercurial 45 + mock 46 + pypitoken 47 + pytestCheckHook 48 + sphinx 49 + virtualenv 50 + webtest 51 + wheel 52 + ]); 52 53 53 54 preCheck = '' 54 55 export HOME=$(mktemp -d); ··· 63 64 64 65 __darwinAllowLocalNetworking = true; 65 66 66 - pythonImportsCheck = [ 67 - "devpi" 68 - ]; 67 + pythonImportsCheck = [ "devpi" ]; 69 68 70 69 meta = with lib; { 71 70 description = "Client for devpi, a pypi index server and packaging meta tool"; 72 71 homepage = "http://doc.devpi.net"; 73 72 changelog = "https://github.com/devpi/devpi/blob/client-${version}/client/CHANGELOG"; 74 73 license = licenses.mit; 75 - maintainers = with maintainers; [ lewo makefu ]; 74 + maintainers = with maintainers; [ 75 + lewo 76 + makefu 77 + ]; 76 78 mainProgram = "devpi"; 77 79 }; 78 80 }