python312Packages.fastbencode: format with nixfmt

+12 -17
+12 -17
pkgs/development/python-modules/fastbencode/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , cython 4 - , fetchPypi 5 - , python 6 - , pythonOlder 7 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + cython, 5 + fetchPypi, 6 + python, 7 + pythonOlder, 8 + setuptools, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "fastbencode"; 12 13 version = "0.3.1"; 13 - pyproject =true; 14 + pyproject = true; 14 15 15 16 disabled = pythonOlder "3.8"; 16 17 ··· 19 20 hash = "sha256-X+DLfRc2iRr2HSreQM6UiUHUbpCLFvU4P1XxJ4SNoZc="; 20 21 }; 21 22 22 - build-system = [ 23 - setuptools 24 - ]; 23 + build-system = [ setuptools ]; 25 24 26 - nativeBuildInputs = [ 27 - cython 28 - ]; 25 + nativeBuildInputs = [ cython ]; 29 26 30 - pythonImportsCheck = [ 31 - "fastbencode" 32 - ]; 27 + pythonImportsCheck = [ "fastbencode" ]; 33 28 34 29 checkPhase = '' 35 30 ${python.interpreter} -m unittest fastbencode.tests.test_suite