tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.model-bakery: format with nixfmt
Fabian Affolter
2 years ago
1cd9327d
3e97b42b
+12
-17
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
model-bakery
default.nix
+12
-17
pkgs/development/python-modules/model-bakery/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchFromGitHub
4
-
, hatchling
5
-
, django
6
-
, pytestCheckHook
7
-
, pythonOlder
8
-
, pytest-django
0
9
}:
10
11
buildPythonPackage rec {
···
22
hash = "sha256-mf6NV7r/9kDCRlszx/QGtfEsC1O/SATd6+EX+w7ptEQ=";
23
};
24
25
-
build-system = [
26
-
hatchling
27
-
];
28
29
-
dependencies = [
30
-
django
31
-
];
32
33
nativeCheckInputs = [
34
pytest-django
35
pytestCheckHook
36
];
37
38
-
pythonImportsCheck = [
39
-
"model_bakery"
40
-
];
41
42
meta = with lib; {
43
description = "Object factory for Django";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchFromGitHub,
5
+
hatchling,
6
+
django,
7
+
pytestCheckHook,
8
+
pythonOlder,
9
+
pytest-django,
10
}:
11
12
buildPythonPackage rec {
···
23
hash = "sha256-mf6NV7r/9kDCRlszx/QGtfEsC1O/SATd6+EX+w7ptEQ=";
24
};
25
26
+
build-system = [ hatchling ];
0
0
27
28
+
dependencies = [ django ];
0
0
29
30
nativeCheckInputs = [
31
pytest-django
32
pytestCheckHook
33
];
34
35
+
pythonImportsCheck = [ "model_bakery" ];
0
0
36
37
meta = with lib; {
38
description = "Object factory for Django";