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

python312Packages.pycomposefile: format with nixfmt

+10 -15
+10 -15
pkgs/development/python-modules/pycomposefile/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pyyaml 5 - , pythonOlder 6 - , setuptools 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + pyyaml, 6 + pythonOlder, 7 + setuptools, 7 8 }: 8 9 9 10 buildPythonPackage rec { ··· 18 19 hash = "sha256-SYul81giQLUM1FdgfabKJyrbSu4xdoaWblcE87ZbBwg="; 19 20 }; 20 21 21 - build-system = [ 22 - setuptools 23 - ]; 22 + build-system = [ setuptools ]; 24 23 25 - dependencies = [ 26 - pyyaml 27 - ]; 24 + dependencies = [ pyyaml ]; 28 25 29 26 # Tests are broken 30 27 doCheck = false; 31 28 32 - pythonImportsCheck = [ 33 - "pycomposefile" 34 - ]; 29 + pythonImportsCheck = [ "pycomposefile" ]; 35 30 36 31 meta = with lib; { 37 32 description = "Python library for structured deserialization of Docker Compose files";