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.aio-pika: format with nixfmt
Fabian Affolter
2 years ago
0a7fb613
1f51584b
+17
-20
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
aio-pika
default.nix
+17
-20
pkgs/development/python-modules/aio-pika/default.nix
···
1
1
-
{ lib
2
2
-
, aiomisc-pytest
3
3
-
, aiormq
4
4
-
, buildPythonPackage
5
5
-
, docker
6
6
-
, fetchFromGitHub
7
7
-
, pamqp
8
8
-
, poetry-core
9
9
-
, pytestCheckHook
10
10
-
, pythonOlder
11
11
-
, shortuuid
12
12
-
, testcontainers
13
13
-
, wrapt
14
14
-
, yarl
1
1
+
{
2
2
+
lib,
3
3
+
aiomisc-pytest,
4
4
+
aiormq,
5
5
+
buildPythonPackage,
6
6
+
docker,
7
7
+
fetchFromGitHub,
8
8
+
pamqp,
9
9
+
poetry-core,
10
10
+
pytestCheckHook,
11
11
+
pythonOlder,
12
12
+
shortuuid,
13
13
+
testcontainers,
14
14
+
wrapt,
15
15
+
yarl,
15
16
}:
16
17
17
18
buildPythonPackage rec {
···
28
29
hash = "sha256-aRXYFW4fl3iXH3bwP30+TllRm4BkIUcGMX/lNfhiqjo=";
29
30
};
30
31
31
31
-
build-system = [
32
32
-
poetry-core
33
33
-
];
32
32
+
build-system = [ poetry-core ];
34
33
35
34
dependencies = [
36
35
aiormq
···
67
66
"tests/test_types.py"
68
67
];
69
68
70
70
-
pythonImportsCheck = [
71
71
-
"aio_pika"
72
72
-
];
69
69
+
pythonImportsCheck = [ "aio_pika" ];
73
70
74
71
meta = with lib; {
75
72
description = "AMQP 0.9 client designed for asyncio and humans";