python311Packages.mortgage: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-18 21:06:06 +02:00
parent 37711ec8f9
commit 223d5bf1ea

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -20,17 +21,11 @@ buildPythonPackage rec {
hash = "sha256-UwSEKfMQqxpcF+7TF/+qD6l8gEO/qDCUklpZz1Nt/Ok=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"mortgage"
];
pythonImportsCheck = [ "mortgage" ];
meta = with lib; {
description = "Mortgage calculator";