nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.pycontrol4: 0.3.1 -> 1.1.0

Diff: https://github.com/lawtancool/pyControl4/compare/v0.3.1...v1.1.0

authored by

Robert Schütz and committed by
Robert Schütz
9cc993fa ea78dd7a

+13 -2
+13 -2
pkgs/development/python-modules/pycontrol4/default.nix
··· 4 4 , fetchFromGitHub 5 5 , aiohttp 6 6 , xmltodict 7 + , python-socketio 8 + , websocket-client 7 9 }: 8 10 9 11 buildPythonPackage rec { 10 12 pname = "pycontrol4"; 11 - version = "0.3.1"; 13 + version = "1.1.0"; 12 14 13 15 disabled = pythonOlder "3.6"; 16 + 17 + format = "setuptools"; 14 18 15 19 src = fetchFromGitHub { 16 20 owner = "lawtancool"; 17 21 repo = "pyControl4"; 18 22 rev = "v${version}"; 19 - sha256 = "068iiyi17ndv6cv124r5dzvififblbi2zw7jgnzb5xi0q093czkj"; 23 + hash = "sha256-dMv2b6dbMauPvPf4LHKmLF4jnXYRYe6A+2lDtiZDUhY="; 20 24 }; 25 + 26 + postPatch = '' 27 + substituteInPlace setup.py \ 28 + --replace "python-socketio>=4,<5" "python-socketio>=4" 29 + ''; 21 30 22 31 propagatedBuildInputs = [ 23 32 aiohttp 24 33 xmltodict 34 + python-socketio 35 + websocket-client 25 36 ]; 26 37 27 38 # tests access network