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