python310Packages.aqualogic: 3.3 -> 3.4
This commit is contained in:
parent
5082fb6707
commit
bc35d8dce2
1 changed files with 4 additions and 4 deletions
|
@ -9,26 +9,26 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aqualogic";
|
pname = "aqualogic";
|
||||||
version = "3.3";
|
version = "3.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "swilson";
|
owner = "swilson";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-6YvkSUtBc3Nl/Ap3LjU0IKY2bE4k86XdSoLo+/c8dDs=";
|
hash = "sha256-hBg02Wypd+MyqM2SUD53djhm5OMP2QAmsp8Stf+UT2c=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
pyserial
|
pyserial
|
||||||
websockets
|
websockets
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
aiohttp
|
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
# With 3.3 the event loop is not terminated after the first test
|
# With 3.4 the event loop is not terminated after the first test
|
||||||
# https://github.com/swilson/aqualogic/issues/9
|
# https://github.com/swilson/aqualogic/issues/9
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue