tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.asyncio-dgram: format with nixfmt
Fabian Affolter
2 years ago
7f62917b
d991adc5
+11
-14
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
asyncio-dgram
default.nix
+11
-14
pkgs/development/python-modules/asyncio-dgram/default.nix
···
1
1
-
{ lib
2
2
-
, stdenv
3
3
-
, buildPythonPackage
4
4
-
, fetchFromGitHub
5
5
-
, pytest-asyncio
6
6
-
, pytestCheckHook
7
7
-
, pythonOlder
8
8
-
, setuptools
1
1
+
{
2
2
+
lib,
3
3
+
stdenv,
4
4
+
buildPythonPackage,
5
5
+
fetchFromGitHub,
6
6
+
pytest-asyncio,
7
7
+
pytestCheckHook,
8
8
+
pythonOlder,
9
9
+
setuptools,
9
10
}:
10
11
11
12
buildPythonPackage rec {
···
22
23
hash = "sha256-Eb/9JtgPT2yOlfnn5Ox8M0kcQhSlRCuX8+Rq6amki8Q=";
23
24
};
24
25
25
25
-
build-system = [
26
26
-
setuptools
27
27
-
];
26
26
+
build-system = [ setuptools ];
28
27
29
28
nativeCheckInputs = [
30
29
pytest-asyncio
···
40
39
"test_from_socket_bad_socket"
41
40
];
42
41
43
43
-
pythonImportsCheck = [
44
44
-
"asyncio_dgram"
45
45
-
];
42
42
+
pythonImportsCheck = [ "asyncio_dgram" ];
46
43
47
44
meta = with lib; {
48
45
description = "Python support for higher level Datagram";