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
-
{ lib
2
-
, stdenv
3
-
, buildPythonPackage
4
-
, fetchFromGitHub
5
-
, pytest-asyncio
6
-
, pytestCheckHook
7
-
, pythonOlder
8
-
, setuptools
0
9
}:
10
11
buildPythonPackage rec {
···
22
hash = "sha256-Eb/9JtgPT2yOlfnn5Ox8M0kcQhSlRCuX8+Rq6amki8Q=";
23
};
24
25
-
build-system = [
26
-
setuptools
27
-
];
28
29
nativeCheckInputs = [
30
pytest-asyncio
···
40
"test_from_socket_bad_socket"
41
];
42
43
-
pythonImportsCheck = [
44
-
"asyncio_dgram"
45
-
];
46
47
meta = with lib; {
48
description = "Python support for higher level Datagram";
···
1
+
{
2
+
lib,
3
+
stdenv,
4
+
buildPythonPackage,
5
+
fetchFromGitHub,
6
+
pytest-asyncio,
7
+
pytestCheckHook,
8
+
pythonOlder,
9
+
setuptools,
10
}:
11
12
buildPythonPackage rec {
···
23
hash = "sha256-Eb/9JtgPT2yOlfnn5Ox8M0kcQhSlRCuX8+Rq6amki8Q=";
24
};
25
26
+
build-system = [ setuptools ];
0
0
27
28
nativeCheckInputs = [
29
pytest-asyncio
···
39
"test_from_socket_bad_socket"
40
];
41
42
+
pythonImportsCheck = [ "asyncio_dgram" ];
0
0
43
44
meta = with lib; {
45
description = "Python support for higher level Datagram";