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