tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.python-engineio: 4.6.1 -> 4.7.1
Martin Weinelt
2 years ago
5a655c1c
9a30d9d6
+17
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
python-engineio
default.nix
+17
-2
pkgs/development/python-modules/python-engineio/default.nix
reviewed
···
10
10
, pytestCheckHook
11
11
, pythonOlder
12
12
, requests
13
13
+
, simple-websocket
13
14
, tornado
14
15
, websocket-client
15
16
}:
16
17
17
18
buildPythonPackage rec {
18
19
pname = "python-engineio";
19
19
-
version = "4.6.1";
20
20
+
version = "4.7.1";
20
21
format = "setuptools";
21
22
22
23
disabled = pythonOlder "3.6";
···
25
26
owner = "miguelgrinberg";
26
27
repo = "python-engineio";
27
28
rev = "refs/tags/v${version}";
28
28
-
hash = "sha256-za2JY5Gu9MEqi3W1zxcuwYiJ5XLc43ig6Hdx/4JwDbY=";
29
29
+
hash = "sha256-jHXpPnrQlIpmQ2sY4y6AUx/6W8Pf+683s4NmmlwZO58=";
30
30
+
};
31
31
+
32
32
+
propagatedBuildInputs = [
33
33
+
simple-websocket
34
34
+
];
35
35
+
36
36
+
passthru.optional-dependencies = {
37
37
+
client = [
38
38
+
requests
39
39
+
websocket-client
40
40
+
];
41
41
+
asyncio_client = [
42
42
+
aiohttp
43
43
+
];
29
44
};
30
45
31
46
nativeCheckInputs = [