tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.lacuscore: format with nixfmt
Fabian Affolter
2 years ago
fe783b3d
1e2f3766
+18
-23
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
lacuscore
default.nix
+18
-23
pkgs/development/python-modules/lacuscore/default.nix
reviewed
···
1
1
-
{ lib
2
2
-
, async-timeout
3
3
-
, buildPythonPackage
4
4
-
, defang
5
5
-
, dnspython
6
6
-
, fetchFromGitHub
7
7
-
, playwrightcapture
8
8
-
, poetry-core
9
9
-
, pythonOlder
10
10
-
, redis
11
11
-
, requests
12
12
-
, pythonRelaxDepsHook
13
13
-
, sphinx
14
14
-
, ua-parser
1
1
+
{
2
2
+
lib,
3
3
+
async-timeout,
4
4
+
buildPythonPackage,
5
5
+
defang,
6
6
+
dnspython,
7
7
+
fetchFromGitHub,
8
8
+
playwrightcapture,
9
9
+
poetry-core,
10
10
+
pythonOlder,
11
11
+
redis,
12
12
+
requests,
13
13
+
pythonRelaxDepsHook,
14
14
+
sphinx,
15
15
+
ua-parser,
15
16
}:
16
17
17
18
buildPythonPackage rec {
···
33
34
"requests"
34
35
];
35
36
36
36
-
build-system = [
37
37
-
poetry-core
38
38
-
];
37
37
+
build-system = [ poetry-core ];
39
38
40
40
-
nativeBuildInputs = [
41
41
-
pythonRelaxDepsHook
42
42
-
];
39
39
+
nativeBuildInputs = [ pythonRelaxDepsHook ];
43
40
44
41
dependencies = [
45
42
async-timeout
···
55
52
# Module has no tests
56
53
doCheck = false;
57
54
58
58
-
pythonImportsCheck = [
59
59
-
"lacuscore"
60
60
-
];
55
55
+
pythonImportsCheck = [ "lacuscore" ];
61
56
62
57
meta = with lib; {
63
58
description = "The modulable part of Lacus";