tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.aiopegelonline: format with nixfmt
Fabian Affolter
2 years ago
2b531277
bdf3410e
+13
-18
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
aiopegelonline
default.nix
+13
-18
pkgs/development/python-modules/aiopegelonline/default.nix
reviewed
···
1
1
-
{ lib
2
2
-
, aiohttp
3
3
-
, aioresponses
4
4
-
, buildPythonPackage
5
5
-
, fetchFromGitHub
6
6
-
, pytest-asyncio
7
7
-
, pytestCheckHook
8
8
-
, pythonOlder
9
9
-
, setuptools
1
1
+
{
2
2
+
lib,
3
3
+
aiohttp,
4
4
+
aioresponses,
5
5
+
buildPythonPackage,
6
6
+
fetchFromGitHub,
7
7
+
pytest-asyncio,
8
8
+
pytestCheckHook,
9
9
+
pythonOlder,
10
10
+
setuptools,
10
11
}:
11
12
12
13
buildPythonPackage rec {
···
23
24
hash = "sha256-nKuqAzT1O5n9X/fEUm+M2RdB4u7moUGQzFA7knSEpBs=";
24
25
};
25
26
26
26
-
build-system = [
27
27
-
setuptools
28
28
-
];
27
27
+
build-system = [ setuptools ];
29
28
30
30
-
dependencies = [
31
31
-
aiohttp
32
32
-
];
29
29
+
dependencies = [ aiohttp ];
33
30
34
31
nativeCheckInputs = [
35
32
aioresponses
···
37
34
pytestCheckHook
38
35
];
39
36
40
40
-
pythonImportsCheck = [
41
41
-
"aiopegelonline"
42
42
-
];
37
37
+
pythonImportsCheck = [ "aiopegelonline" ];
43
38
44
39
meta = with lib; {
45
40
description = "Library to retrieve data from PEGELONLINE";