mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 21:14:52 +00:00
python312Packages.model-bakery: format with nixfmt
This commit is contained in:
parent
3e97b42b82
commit
1cd9327dc4
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user