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

python312Packages.crc: format with nixfmt

+11 -18
+11 -18
pkgs/development/python-modules/crc/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , poetry-core 5 - , pytestCheckHook 6 - , pythonOlder 7 }: 8 9 buildPythonPackage rec { ··· 20 hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74="; 21 }; 22 23 - build-system = [ 24 - poetry-core 25 - ]; 26 27 - nativeCheckInputs = [ 28 - pytestCheckHook 29 - ]; 30 31 - pythonImportsCheck = [ 32 - "crc" 33 - ]; 34 35 - disabledTestPaths = [ 36 - "test/bench" 37 - ]; 38 39 meta = with lib; { 40 description = "Python module for calculating and verifying predefined & custom CRC's";
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + poetry-core, 6 + pytestCheckHook, 7 + pythonOlder, 8 }: 9 10 buildPythonPackage rec { ··· 21 hash = "sha256-y30tnGG+G9dWBO8MUFYm2IGHiGIPbv4kB2VwhV0/C74="; 22 }; 23 24 + build-system = [ poetry-core ]; 25 26 + nativeCheckInputs = [ pytestCheckHook ]; 27 28 + pythonImportsCheck = [ "crc" ]; 29 30 + disabledTestPaths = [ "test/bench" ]; 31 32 meta = with lib; { 33 description = "Python module for calculating and verifying predefined & custom CRC's";