python312Packages.minidb: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-05-11 21:39:45 +02:00
parent ecf4a6d793
commit b246b903a1

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-e7wVR+xr+5phNoRnGIxnmrjB1QU9JmyfQiu88PYapA8=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"minidb"
];
pythonImportsCheck = [ "minidb" ];
meta = with lib; {
description = "SQLite3-based store for Python objects";
@ -39,4 +34,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ tv ];
};
}