python312Packages.pycomposefile: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-20 09:31:29 +02:00
parent f255e6b727
commit b51ff963a0
@@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyyaml
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
pyyaml,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@@ -18,20 +19,14 @@ buildPythonPackage rec {
hash = "sha256-SYul81giQLUM1FdgfabKJyrbSu4xdoaWblcE87ZbBwg=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
pyyaml
];
dependencies = [ pyyaml ];
# Tests are broken
doCheck = false;
pythonImportsCheck = [
"pycomposefile"
];
pythonImportsCheck = [ "pycomposefile" ];
meta = with lib; {
description = "Python library for structured deserialization of Docker Compose files";