We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 623b612 commit 1fb908bCopy full SHA for 1fb908b
pkgs/development/python-modules/vallox-websocket-api/default.nix
@@ -2,7 +2,6 @@
2
lib,
3
aiohttp,
4
buildPythonPackage,
5
- pythonOlder,
6
fetchFromGitHub,
7
setuptools,
8
construct,
@@ -16,22 +15,18 @@ buildPythonPackage rec {
16
15
version = "5.4.0";
17
pyproject = true;
18
19
- disabled = pythonOlder "3.9";
20
-
21
src = fetchFromGitHub {
22
owner = "yozik04";
23
repo = "vallox_websocket_api";
24
tag = version;
25
hash = "sha256-L9duL8XfDUxHgJxVbG7PPPRJRzVEckxqbB+1vX0GalU=";
26
};
27
28
- nativeBuildInputs = [
+ build-system = [
29
setuptools
30
];
31
32
- pythonRelaxDeps = [ "websockets" ];
33
34
- propagatedBuildInputs = [
+ dependencies = [
35
aiohttp
36
construct
37
websockets
0 commit comments