python312Packages.model-bakery: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-22 10:06:28 +02:00
parent 3e97b42b82
commit 1cd9327dc4
1 changed files with 12 additions and 17 deletions

View File

@ -1,11 +1,12 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, django
, pytestCheckHook
, pythonOlder
, pytest-django
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
django,
pytestCheckHook,
pythonOlder,
pytest-django,
}:
buildPythonPackage rec {
@ -22,22 +23,16 @@ buildPythonPackage rec {
hash = "sha256-mf6NV7r/9kDCRlszx/QGtfEsC1O/SATd6+EX+w7ptEQ=";
};
build-system = [
hatchling
];
build-system = [ hatchling ];
dependencies = [
django
];
dependencies = [ django ];
nativeCheckInputs = [
pytest-django
pytestCheckHook
];
pythonImportsCheck = [
"model_bakery"
];
pythonImportsCheck = [ "model_bakery" ];
meta = with lib; {
description = "Object factory for Django";