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

python312Packages.thriftpy2: format with nixfmt

+13 -18
+13 -18
pkgs/development/python-modules/thriftpy2/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , cython 4 - , fetchFromGitHub 5 - , ply 6 - , pythonOlder 7 - , six 8 - , setuptools 9 - , tornado 1 + { 2 + lib, 3 + buildPythonPackage, 4 + cython, 5 + fetchFromGitHub, 6 + ply, 7 + pythonOlder, 8 + six, 9 + setuptools, 10 + tornado, 10 11 }: 11 12 12 13 buildPythonPackage rec { ··· 23 24 hash = "sha256-Pjy9OPwFfKaw+XVl7IbbAKPz050TlqI4+yLqSITOkSY="; 24 25 }; 25 26 26 - build-system = [ 27 - setuptools 28 - ]; 27 + build-system = [ setuptools ]; 29 28 30 - nativeBuildInputs = [ 31 - cython 32 - ]; 29 + nativeBuildInputs = [ cython ]; 33 30 34 31 dependencies = [ 35 32 ply ··· 40 37 # Not all needed files seems to be present 41 38 doCheck = false; 42 39 43 - pythonImportsCheck = [ 44 - "thriftpy2" 45 - ]; 40 + pythonImportsCheck = [ "thriftpy2" ]; 46 41 47 42 meta = with lib; { 48 43 description = "Python module for Apache Thrift";