tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.aiodiscover: format with nixfmt
Fabian Affolter
2 years ago
539d3bce
5707a913
+17
-20
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
aiodiscover
default.nix
+17
-20
pkgs/development/python-modules/aiodiscover/default.nix
reviewed
···
1
1
-
{ lib
2
2
-
, aiodns
3
3
-
, async-timeout
4
4
-
, buildPythonPackage
5
5
-
, cached-ipaddress
6
6
-
, dnspython
7
7
-
, fetchFromGitHub
8
8
-
, ifaddr
9
9
-
, netifaces
10
10
-
, pyroute2
11
11
-
, pytest-asyncio
12
12
-
, pytestCheckHook
13
13
-
, pythonOlder
14
14
-
, setuptools
1
1
+
{
2
2
+
lib,
3
3
+
aiodns,
4
4
+
async-timeout,
5
5
+
buildPythonPackage,
6
6
+
cached-ipaddress,
7
7
+
dnspython,
8
8
+
fetchFromGitHub,
9
9
+
ifaddr,
10
10
+
netifaces,
11
11
+
pyroute2,
12
12
+
pytest-asyncio,
13
13
+
pytestCheckHook,
14
14
+
pythonOlder,
15
15
+
setuptools,
15
16
}:
16
17
17
18
buildPythonPackage rec {
···
28
29
hash = "sha256-+DcROb6jR0veD3oSKgyJHUi1VtCT54yBKvVqir5y+R4=";
29
30
};
30
31
31
31
-
nativeBuildInputs = [
32
32
-
setuptools
33
33
-
];
32
32
+
nativeBuildInputs = [ setuptools ];
34
33
35
34
propagatedBuildInputs = [
36
35
async-timeout
···
52
51
"test_async_discover_hosts"
53
52
];
54
53
55
55
-
pythonImportsCheck = [
56
56
-
"aiodiscover"
57
57
-
];
54
54
+
pythonImportsCheck = [ "aiodiscover" ];
58
55
59
56
meta = with lib; {
60
57
description = "Python module to discover hosts via ARP and PTR lookup";