lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.mechanize: format with nixfmt

+12 -19
+12 -19
pkgs/development/python-modules/mechanize/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , html5lib 5 - , pytestCheckHook 6 - , pythonOlder 7 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + html5lib, 6 + pytestCheckHook, 7 + pythonOlder, 8 + setuptools, 8 9 }: 9 10 10 11 buildPythonPackage rec { ··· 19 20 hash = "sha256-HeqUf5vn6gq2EPe7xKTja0XWv9/O6imtPTiaiKGVfd8="; 20 21 }; 21 22 22 - build-system = [ 23 - setuptools 24 - ]; 23 + build-system = [ setuptools ]; 25 24 26 - dependencies = [ 27 - html5lib 28 - ]; 25 + dependencies = [ html5lib ]; 29 26 30 - nativeCheckInputs = [ 31 - pytestCheckHook 32 - ]; 27 + nativeCheckInputs = [ pytestCheckHook ]; 33 28 34 - pythonImportsCheck = [ 35 - "mechanize" 36 - ]; 29 + pythonImportsCheck = [ "mechanize" ]; 37 30 38 31 disabledTestPaths = [ 39 32 # Tests require network access