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