Merge pull request #220880 from fabaff/websockify-bump

python310Packages.websockify: 0.10.0 -> 0.11.0

authored by

Fabian Affolter and committed by
GitHub
8ae58146 a65bb07a

+31 -10
+31 -10
pkgs/development/python-modules/websockify/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , fetchPypi 4 , numpy 5 }: 6 7 buildPythonPackage rec { 8 - version = "0.10.0"; 9 pname = "websockify"; 10 11 - src = fetchPypi { 12 - inherit pname version; 13 - sha256 = "6c4cc1bc132abb4a99834bcb1b4bd72f51d35a08d08093a817646ecc226ac44e"; 14 }; 15 16 - propagatedBuildInputs = [ numpy ]; 17 18 - # Ran 0 tests in 0.000s 19 - doCheck = false; 20 21 - pythonImportsCheck = [ "websockify" ]; 22 23 meta = with lib; { 24 description = "WebSockets support for any application/server"; 25 homepage = "https://github.com/kanaka/websockify"; 26 - license = licenses.lgpl3; 27 maintainers = with maintainers; [ ]; 28 }; 29 }
··· 1 { lib 2 , buildPythonPackage 3 + , fetchFromGitHub 4 + , jwcrypto 5 , numpy 6 + , pytestCheckHook 7 + , pythonOlder 8 + , redis 9 + , requests 10 + , simplejson 11 }: 12 13 buildPythonPackage rec { 14 pname = "websockify"; 15 + version = "0.11.0"; 16 + format = "setuptools"; 17 18 + disabled = pythonOlder "3.7"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "novnc"; 22 + repo = pname; 23 + rev = "refs/tags/v${version}"; 24 + hash = "sha256-82Fk9qbiiCD5Rts1d14sK/njeN7DcjKMKPqE7S/1WHs="; 25 }; 26 27 + propagatedBuildInputs = [ 28 + jwcrypto 29 + numpy 30 + redis 31 + requests 32 + simplejson 33 + ]; 34 35 + nativeCheckInputs = [ 36 + pytestCheckHook 37 + ]; 38 39 + pythonImportsCheck = [ 40 + "websockify" 41 + ]; 42 43 meta = with lib; { 44 description = "WebSockets support for any application/server"; 45 homepage = "https://github.com/kanaka/websockify"; 46 + changelog = "https://github.com/novnc/websockify/releases/tag/v${version}"; 47 + license = licenses.lgpl3Only; 48 maintainers = with maintainers; [ ]; 49 }; 50 }