tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.aqualogic: 3.3 -> 3.4
Fabian Affolter
3 years ago
bc35d8dc
5082fb67
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
aqualogic
default.nix
+4
-4
pkgs/development/python-modules/aqualogic/default.nix
reviewed
···
9
9
10
10
buildPythonPackage rec {
11
11
pname = "aqualogic";
12
12
-
version = "3.3";
12
12
+
version = "3.4";
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "swilson";
16
16
repo = pname;
17
17
rev = version;
18
18
-
hash = "sha256-6YvkSUtBc3Nl/Ap3LjU0IKY2bE4k86XdSoLo+/c8dDs=";
18
18
+
hash = "sha256-hBg02Wypd+MyqM2SUD53djhm5OMP2QAmsp8Stf+UT2c=";
19
19
};
20
20
21
21
propagatedBuildInputs = [
22
22
+
aiohttp
22
23
pyserial
23
24
websockets
24
25
];
25
26
26
27
nativeCheckInputs = [
27
27
-
aiohttp
28
28
pytestCheckHook
29
29
];
30
30
31
31
-
# With 3.3 the event loop is not terminated after the first test
31
31
+
# With 3.4 the event loop is not terminated after the first test
32
32
# https://github.com/swilson/aqualogic/issues/9
33
33
doCheck = false;
34
34